Implemented RtlGetNtProductType.
This commit is contained in:
parent
1de5d3cc7f
commit
4fd5bf40a2
|
@ -383,16 +383,6 @@ DWORD WINAPI RtlDeleteSecurityObject(DWORD x1) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* RtlGetNtProductType [NTDLL.@]
|
||||
*/
|
||||
BOOLEAN WINAPI RtlGetNtProductType(LPDWORD type)
|
||||
{
|
||||
FIXME("(%p): stub\n", type);
|
||||
*type=3; /* dunno. 1 for client, 3 for server? */
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* _chkstk [NTDLL.@]
|
||||
*
|
||||
|
|
|
@ -328,6 +328,16 @@ void WINAPI RtlGetNtVersionNumbers( LPDWORD major, LPDWORD minor, LPDWORD build
|
|||
}
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
* RtlGetNtProductType (NTDLL.@)
|
||||
*/
|
||||
BOOLEAN WINAPI RtlGetNtProductType( LPDWORD type )
|
||||
{
|
||||
if (type) *type = current_version->wProductType;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
* VerifyVersionInfoW (KERNEL32.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue