mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:23:34 +00:00
Tell apps we're NT4 SP6, VB runtime will fail if we report SP0
svn path=/trunk/; revision=8619
This commit is contained in:
parent
025e88cba9
commit
69208dc611
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: process.c,v 1.126 2004/03/07 21:09:08 navaraf Exp $
|
/* $Id: process.c,v 1.127 2004/03/10 09:14:29 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -470,6 +470,7 @@ PsCreatePeb(HANDLE ProcessHandle,
|
||||||
Peb->OSMinorVersion = 0;
|
Peb->OSMinorVersion = 0;
|
||||||
Peb->OSBuildNumber = 0;
|
Peb->OSBuildNumber = 0;
|
||||||
Peb->OSPlatformId = 2; //VER_PLATFORM_WIN32_NT;
|
Peb->OSPlatformId = 2; //VER_PLATFORM_WIN32_NT;
|
||||||
|
Peb->SPMajorVersion = 6;
|
||||||
|
|
||||||
Peb->AnsiCodePageData = (char*)TableBase + NlsAnsiTableOffset;
|
Peb->AnsiCodePageData = (char*)TableBase + NlsAnsiTableOffset;
|
||||||
Peb->OemCodePageData = (char*)TableBase + NlsOemTableOffset;
|
Peb->OemCodePageData = (char*)TableBase + NlsOemTableOffset;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue