mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
ntdll: Bump current build number to 19043 (Win10 2009).
Based on Proton commit 0fa76dd66a8.
This commit is contained in:
parent
ec449cfdeb
commit
fd00d8e4cc
Notes:
Alexandre Julliard
2023-10-31 22:42:25 +01:00
Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/wine/-/merge_requests/4236
6 changed files with 11 additions and 11 deletions
|
@ -25,10 +25,10 @@ LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
|||
#define WINE_FILEDESCRIPTION_STR "Wine kernel DLL"
|
||||
#define WINE_FILENAME_STR "kernel32.dll"
|
||||
|
||||
/* these values come from Windows 10 Version 1909 */
|
||||
#define WINE_FILEVERSION 10,0,18362,1350
|
||||
#define WINE_FILEVERSION_STR "10.0.18362.1350"
|
||||
#define WINE_PRODUCTVERSION 10,0,18362,1350
|
||||
#define WINE_PRODUCTVERSION_STR "10.0.18362.1350"
|
||||
/* these values come from Windows 10 Version 2009 */
|
||||
#define WINE_FILEVERSION 10,0,19043,1466
|
||||
#define WINE_FILEVERSION_STR "10.0.19043.1466"
|
||||
#define WINE_PRODUCTVERSION 10,0,19043,1466
|
||||
#define WINE_PRODUCTVERSION_STR "10.0.19043.1466"
|
||||
|
||||
#include "wine/wine_common_ver.rc"
|
||||
|
|
|
@ -154,7 +154,7 @@ static const struct
|
|||
},
|
||||
/* Windows 10 */
|
||||
{
|
||||
{ 10, 0, 18362 },
|
||||
{ 10, 0, 19043 },
|
||||
{0x8e0f7a12,0xbfb3,0x4fe8,{0xb9,0xa5,0x48,0xfd,0x50,0xa1,0x5a,0x9a}}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1851,7 +1851,7 @@ static void init_peb( RTL_USER_PROCESS_PARAMETERS *params, void *module )
|
|||
peb->ProcessParameters = params;
|
||||
peb->OSMajorVersion = 10;
|
||||
peb->OSMinorVersion = 0;
|
||||
peb->OSBuildNumber = 18362;
|
||||
peb->OSBuildNumber = 19043;
|
||||
peb->OSPlatformId = VER_PLATFORM_WIN32_NT;
|
||||
peb->ImageSubSystem = main_image_info.SubSystemType;
|
||||
peb->ImageSubSystemMajorVersion = main_image_info.MajorSubsystemVersion;
|
||||
|
|
|
@ -168,7 +168,7 @@ static const RTL_OSVERSIONINFOEXW VersionData[NB_WINDOWS_VERSIONS] =
|
|||
},
|
||||
/* WIN10 */
|
||||
{
|
||||
sizeof(RTL_OSVERSIONINFOEXW), 10, 0, 18362, VER_PLATFORM_WIN32_NT,
|
||||
sizeof(RTL_OSVERSIONINFOEXW), 10, 0, 19043, VER_PLATFORM_WIN32_NT,
|
||||
L"", 0, 0, VER_SUITE_SINGLEUSERTS, VER_NT_WORKSTATION, 0
|
||||
},
|
||||
/* WIN11 */
|
||||
|
|
|
@ -2502,8 +2502,8 @@ HKLM,"System\CurrentControlSet\Services\Winsock2\Parameters\Protocol_Catalog9\Ca
|
|||
HKLM,%CurrentVersionNT%,"CurrentVersion",2,"6.3"
|
||||
HKLM,%CurrentVersionNT%,"CurrentMajorVersionNumber",0x10003,10
|
||||
HKLM,%CurrentVersionNT%,"CurrentMinorVersionNumber",0x10003,0
|
||||
HKLM,%CurrentVersionNT%,"CurrentBuild",2,"18362"
|
||||
HKLM,%CurrentVersionNT%,"CurrentBuildNumber",2,"18362"
|
||||
HKLM,%CurrentVersionNT%,"CurrentBuild",2,"19043"
|
||||
HKLM,%CurrentVersionNT%,"CurrentBuildNumber",2,"19043"
|
||||
HKLM,%CurrentVersionNT%,"CurrentType",2,"Multiprocessor Free"
|
||||
HKLM,%CurrentVersionNT%,"DigitalProductId",1,00,00,00,00,00,00,00,00,00,00,00,\
|
||||
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
|
||||
|
|
|
@ -51,7 +51,7 @@ struct win_version
|
|||
static const struct win_version win_versions[] =
|
||||
{
|
||||
{ L"win11", L"Windows 11", L"6.3", 10, 0, 22000, VER_PLATFORM_WIN32_NT, L"", 0, 0, L"WinNT"},
|
||||
{ L"win10", L"Windows 10", L"6.3", 10, 0, 18362, VER_PLATFORM_WIN32_NT, L"", 0, 0, L"WinNT"},
|
||||
{ L"win10", L"Windows 10", L"6.3", 10, 0, 19043, VER_PLATFORM_WIN32_NT, L"", 0, 0, L"WinNT"},
|
||||
{ L"win81", L"Windows 8.1", NULL, 6, 3, 9600, VER_PLATFORM_WIN32_NT, L"", 0, 0, L"WinNT"},
|
||||
{ L"win8", L"Windows 8", NULL, 6, 2, 9200, VER_PLATFORM_WIN32_NT, L"", 0, 0, L"WinNT"},
|
||||
{ L"win2008r2", L"Windows 2008 R2", NULL, 6, 1, 7601, VER_PLATFORM_WIN32_NT, L"Service Pack 1", 1, 0, L"ServerNT"},
|
||||
|
|
Loading…
Reference in a new issue