mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[APPCOMPAT] Run apps in compatibility with 6.1 SP1 (7 SP1), 6.2 (8) and 6.3 (8.1) (#1273)
This commit is contained in:
parent
b6c49bdff2
commit
bcfd350e9f
4 changed files with 24 additions and 0 deletions
|
@ -47,6 +47,7 @@ VersionLieInfo g_WinVistaSP1 = { 0x17710006, 6, 0, 6001, VER_PLATFORM_WIN32_NT,
|
|||
VersionLieInfo g_WinVistaSP2 = { 0x17720006, 6, 0, 6002, VER_PLATFORM_WIN32_NT, 2, 0 };
|
||||
|
||||
VersionLieInfo g_Win7RTM = { 0x1db00106, 6, 1, 7600, VER_PLATFORM_WIN32_NT, 0, 0 };
|
||||
VersionLieInfo g_Win7SP1 = { 0x1db10106, 6, 1, 7601, VER_PLATFORM_WIN32_NT, 1, 0 };
|
||||
|
||||
VersionLieInfo g_Win8RTM = { 0x23f00206, 6, 2, 9200, VER_PLATFORM_WIN32_NT, 0, 0 };
|
||||
VersionLieInfo g_Win81RTM = { 0x25800306, 6, 3, 9600, VER_PLATFORM_WIN32_NT, 0, 0 };
|
||||
|
@ -230,6 +231,9 @@ BOOL WINAPI SHIM_OBJ_NAME(APIHook_GetVersionExW)(LPOSVERSIONINFOEXA lpOsVersionI
|
|||
#define VERSION_INFO g_Win7RTM
|
||||
#include "versionlie.inl"
|
||||
|
||||
#define SHIM_NS Win7SP1VersionLie
|
||||
#define VERSION_INFO g_Win7SP1
|
||||
#include "versionlie.inl"
|
||||
|
||||
#define SHIM_NS Win8RTMVersionLie
|
||||
#define VERSION_INFO g_Win8RTM
|
||||
|
|
|
@ -38,6 +38,9 @@ static struct {
|
|||
{ L"Windows Vista (SP1)", L"VISTASP1" },
|
||||
{ L"Windows Vista (SP2)", L"VISTASP2" },
|
||||
{ L"Windows 7", L"WIN7RTM" },
|
||||
{ L"Windows 7 (SP1)", L"WIN7SP1" },
|
||||
{ L"Windows 8", L"WIN8RTM" },
|
||||
{ L"Windows 8.1", L"WIN81RTM" },
|
||||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
|
|
|
@ -173,6 +173,15 @@
|
|||
<EXCLUDE MODULE="oleaut32.dll" />
|
||||
<DLLFILE>aclayers.dll</DLLFILE>
|
||||
</SHIM>
|
||||
<SHIM NAME="Win7SP1VersionLie">
|
||||
<INCLUDE MODULE="shell32.dll" />
|
||||
<INCLUDE MODULE="msi.dll" />
|
||||
<EXCLUDE MODULE="kernel32.dll" />
|
||||
<EXCLUDE MODULE="msvcrt.dll" />
|
||||
<EXCLUDE MODULE="ole32.dll" />
|
||||
<EXCLUDE MODULE="oleaut32.dll" />
|
||||
<DLLFILE>aclayers.dll</DLLFILE>
|
||||
</SHIM>
|
||||
<SHIM NAME="Win8RTMVersionLie">
|
||||
<INCLUDE MODULE="shell32.dll" />
|
||||
<INCLUDE MODULE="msi.dll" />
|
||||
|
@ -319,6 +328,12 @@
|
|||
<DATA NAME="SHIMVERSIONNT" DATA_DWORD="601" />
|
||||
<!-- TODO: Add more fixes! -->
|
||||
</LAYER>
|
||||
<LAYER NAME="WIN7SP1">
|
||||
<!-- ReactOS specific. Windows does not have this version lie -->
|
||||
<SHIM_REF NAME="Win7SP1VersionLie" />
|
||||
<DATA NAME="SHIMVERSIONNT" DATA_DWORD="601" />
|
||||
<!-- TODO: Add more fixes! -->
|
||||
</LAYER>
|
||||
<LAYER NAME="WIN8RTM">
|
||||
<SHIM_REF NAME="Win8RTMVersionLie" />
|
||||
<DATA NAME="SHIMVERSIONNT" DATA_DWORD="602" />
|
||||
|
|
|
@ -281,6 +281,7 @@ VersionLieInfo g_WinVistaSP1 = { 0x17710006, 6, 0, 6001, VER_PLATFORM_WIN32_NT,
|
|||
VersionLieInfo g_WinVistaSP2 = { 0x17720006, 6, 0, 6002, VER_PLATFORM_WIN32_NT, 2, 0 };
|
||||
|
||||
VersionLieInfo g_Win7RTM = { 0x1db00106, 6, 1, 7600, VER_PLATFORM_WIN32_NT, 0, 0 };
|
||||
VersionLieInfo g_Win7SP1 = { 0x1db10106, 6, 1, 7601, VER_PLATFORM_WIN32_NT, 1, 0 }; /* ReactOS specific. Windows does not have this version lie */
|
||||
|
||||
VersionLieInfo g_Win8RTM = { 0x23f00206, 6, 2, 9200, VER_PLATFORM_WIN32_NT, 0, 0 };
|
||||
VersionLieInfo g_Win81RTM = { 0x25800306, 6, 3, 9600, VER_PLATFORM_WIN32_NT, 0, 0 };
|
||||
|
@ -400,6 +401,7 @@ START_TEST(versionlie)
|
|||
run_test("VistaSP1VersionLie", &g_WinVistaSP1);
|
||||
run_test("VistaSP2VersionLie", &g_WinVistaSP2);
|
||||
run_test("Win7RTMVersionLie", &g_Win7RTM);
|
||||
run_test("Win7SP1VersionLie", &g_Win7SP1); /* ReactOS specific. Windows does not have this version lie */
|
||||
run_test("Win8RTMVersionLie", &g_Win8RTM);
|
||||
run_test("Win81RTMVersionLie", &g_Win81RTM);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue