ultimatepp/uppsrc/Core/Win32Util.h
cxl d6db3f9e93 Core: IsWin7, CtrlCore: U++ now backpainted by default in Win7+
git-svn-id: svn://ultimatepp.org/upp/trunk@3500 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-06-08 20:40:10 +00:00

71 lines
1.8 KiB
C++

#ifdef PLATFORM_WIN32
#include <winreg.h>
#ifdef PLATFORM_WINCE
inline bool IsWinNT() { return false; }
inline bool IsWinXP() { return false; }
inline bool IsWin2K() { return false; }
inline bool IsWinVista() { return false; }
inline bool IsWin7() { return false; }
#else
inline bool IsWinNT() { return GetVersion() < 0x80000000; }
bool IsWin2K();
bool IsWinXP();
bool IsWinVista();
bool IsWin7();
#endif
HINSTANCE AppGetHandle();
void AppSetHandle(HINSTANCE dll_instance);
String AsString(const wchar_t *buffer);
String AsString(const wchar_t *buffer, int count);
String AsString(const wchar_t *buffer, const wchar_t *end);
String GetWinRegString(const char *value, const char *path, HKEY base_key = HKEY_LOCAL_MACHINE);
int GetWinRegInt(const char *value, const char *path, HKEY base_key = HKEY_LOCAL_MACHINE);
bool SetWinRegString(const String& string, const char *value, const char *path, HKEY base_key = HKEY_LOCAL_MACHINE);
bool SetWinRegExpandString(const String& string, const char *value, const char *path, HKEY base_key);
bool SetWinRegInt(int data, const char *value, const char *path, HKEY base_key = HKEY_LOCAL_MACHINE);
void DeleteWinReg(const String& key, HKEY base = HKEY_LOCAL_MACHINE);
void *GetDllFn(const char *dll, const char *fn);
template <class T>
void DllFn(T& x, const char *dll, const char *fn)
{
x = (T)GetDllFn(dll, fn);
}
#ifndef PLATFORM_WINCE
String GetSystemDirectory();
String GetWindowsDirectory();
#endif
String GetModuleFileName(HINSTANCE instance = AppGetHandle());
//deprecated
class SyncObject {
protected:
HANDLE handle;
public:
bool Wait(int time_ms);
bool Wait();
HANDLE GetHandle() const { return handle; }
SyncObject();
~SyncObject();
};
//deprecated
class Event : public SyncObject {
public:
void Set();
Event();
};
#endif