Implemented RtlGetNtProductType.

This commit is contained in:
Alexandre Julliard 2005-08-10 14:48:45 +00:00
parent 1de5d3cc7f
commit 4fd5bf40a2
2 changed files with 10 additions and 10 deletions

View File

@ -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.@]
*

View File

@ -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.@)
*/