00001 /* Copyright (c) MediaArea.net SARL. All Rights Reserved. 00002 * 00003 * Use of this source code is governed by a zlib-style license that can 00004 * be found in the License.txt file in the root of the source tree. 00005 */ 00006 00007 //--------------------------------------------------------------------------- 00008 #ifndef ZenOS_UtilsH 00009 #define ZenOS_UtilsH 00010 //--------------------------------------------------------------------------- 00011 00012 //--------------------------------------------------------------------------- 00013 #include "ZenLib/Ztring.h" 00014 //--------------------------------------------------------------------------- 00015 00016 namespace ZenLib 00017 { 00018 00019 //*************************************************************************** 00020 // OS Information 00021 //*************************************************************************** 00022 00023 //--------------------------------------------------------------------------- 00024 bool IsWin9X (); 00025 // Execute 00026 //*************************************************************************** 00027 00028 void Shell_Execute(const Ztring &ToExecute); 00029 00030 //*************************************************************************** 00031 // Directorues 00032 //*************************************************************************** 00033 00034 Ztring OpenFolder_Show(void* Handle, const Ztring &Title, const Ztring &Caption); 00035 00036 } //namespace ZenLib 00037 #endif