reactos/win32ss/user/rtl/image.c
Katayama Hirofumi MZ 6c74e69d12
[NTUSER][USER32] Populate dwExpWinVer (#7095)
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.
2024-07-09 04:22:14 +09:00

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);
}