mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
6c74e69d12
This value is needed for SetWindowPlacement and IMM. JIRA issue: CORE-19675 JIRA issue: CORE-19268 - Add RtlGetExpWinVer function into win32ss/user/rtl/image.c. - Add RtlGetExpWinVer prototype into win32ss/include/ntuser.h. - Delete RtlGetExpWinVer definition in win32ss/user/user32/windows/window.c. - Populate THREADINFO.dwExpWinVer and CLIENTINFO.dwExpWinVer by using RtlGetExpWinVer in InitThreadCallback function.
47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
/*
|
|
* PROJECT: ReactOS user32.dll and win32k.sys
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: RtlGetExpWinVer function
|
|
* COPYRIGHT: Copyright 2019 James Tabor <james.tabor@reactos.org>
|
|
* Copyright 2024 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
|
*/
|
|
|
|
#ifdef _WIN32K_
|
|
#include <win32k.h>
|
|
DBG_DEFAULT_CHANNEL(UserMisc);
|
|
#else
|
|
#include <user32.h>
|
|
#include <wine/debug.h>
|
|
WINE_DEFAULT_DEBUG_CHANNEL(user32);
|
|
#endif
|
|
|
|
/* Get the expected OS version from the application module */
|
|
ULONG
|
|
RtlGetExpWinVer(_In_ PVOID BaseAddress)
|
|
{
|
|
ULONG dwMajorVersion = 3, dwMinorVersion = 10; /* Set default to Windows 3.10 (WINVER_WIN31) */
|
|
PIMAGE_NT_HEADERS pNTHeader;
|
|
ULONG_PTR AlignedAddress = (ULONG_PTR)BaseAddress;
|
|
|
|
TRACE("(%p)\n", BaseAddress);
|
|
|
|
/* Remove the magic flag for non-mapped images */
|
|
if (AlignedAddress & 1)
|
|
AlignedAddress = (AlignedAddress & ~1);
|
|
|
|
if (AlignedAddress && !LOWORD(AlignedAddress))
|
|
{
|
|
pNTHeader = RtlImageNtHeader((PVOID)AlignedAddress);
|
|
if (pNTHeader)
|
|
{
|
|
dwMajorVersion = pNTHeader->OptionalHeader.MajorSubsystemVersion;
|
|
if (dwMajorVersion == 1)
|
|
dwMajorVersion = 3;
|
|
else
|
|
dwMinorVersion = pNTHeader->OptionalHeader.MinorSubsystemVersion;
|
|
}
|
|
}
|
|
|
|
return MAKEWORD(dwMinorVersion, dwMajorVersion);
|
|
}
|