mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
update version number to 0.1.4
svn path=/trunk/; revision=6307
This commit is contained in:
parent
a4504f3fa6
commit
4ceccd2cd5
2 changed files with 9 additions and 9 deletions
|
@ -1,11 +1,11 @@
|
||||||
/* Do not edit - Machine generated */
|
/* Do not edit - Machine generated */
|
||||||
#ifndef _INC_REACTOS_BUILDNO
|
#ifndef _INC_REACTOS_BUILDNO
|
||||||
#define _INC_REACTOS_BUILDNO
|
#define _INC_REACTOS_BUILDNO
|
||||||
#define KERNEL_VERSION_BUILD 36
|
#define KERNEL_VERSION_BUILD 1
|
||||||
#define KERNEL_VERSION_BUILD_STR "36"
|
#define KERNEL_VERSION_BUILD_STR "1"
|
||||||
#define KERNEL_RELEASE_RC "0.1.3.36\0"
|
#define KERNEL_RELEASE_RC "0.1.4.1\0"
|
||||||
#define KERNEL_RELEASE_STR "0.1.3.36"
|
#define KERNEL_RELEASE_STR "0.1.4.1"
|
||||||
#define KERNEL_VERSION_RC "0.1.3\0"
|
#define KERNEL_VERSION_RC "0.1.4\0"
|
||||||
#define KERNEL_VERSION_STR "0.1.3"
|
#define KERNEL_VERSION_STR "0.1.4"
|
||||||
#endif
|
#endif
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
|
@ -45,10 +45,10 @@ static BOOL (WINAPI*SetShellWindowEx)(HWND, HWND);
|
||||||
|
|
||||||
BOOL IsAnyDesktopRunning()
|
BOOL IsAnyDesktopRunning()
|
||||||
{
|
{
|
||||||
HINSTANCE shell32 = GetModuleHandle(TEXT("user32"));
|
HINSTANCE hUser32 = GetModuleHandle(TEXT("user32"));
|
||||||
|
|
||||||
SetShellWindow = (BOOL(WINAPI*)(HWND)) GetProcAddress(shell32, "SetShellWindow");
|
SetShellWindow = (BOOL(WINAPI*)(HWND)) GetProcAddress(hUser32, "SetShellWindow");
|
||||||
SetShellWindowEx = (BOOL(WINAPI*)(HWND,HWND)) GetProcAddress(shell32, "SetShellWindowEx");
|
SetShellWindowEx = (BOOL(WINAPI*)(HWND,HWND)) GetProcAddress(hUser32, "SetShellWindowEx");
|
||||||
|
|
||||||
return GetShellWindow() != 0;
|
return GetShellWindow() != 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue