mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +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
|
@ -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…
Add table
Add a link
Reference in a new issue