mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
ntdll: Add RtlGetProductInfo stub.
This commit is contained in:
parent
1c4c2bbf33
commit
ee0b76632a
@ -636,6 +636,7 @@
|
||||
@ stdcall RtlGetNtProductType(ptr)
|
||||
@ stdcall RtlGetNtVersionNumbers(ptr ptr ptr)
|
||||
@ stdcall RtlGetOwnerSecurityDescriptor(ptr ptr ptr)
|
||||
@ stdcall RtlGetProductInfo(long long long long ptr)
|
||||
@ stdcall RtlGetProcessHeaps(long ptr)
|
||||
@ stdcall RtlGetSaclSecurityDescriptor(ptr ptr ptr ptr)
|
||||
# @ stub RtlGetSecurityDescriptorRMControl
|
||||
|
@ -527,6 +527,24 @@ done:
|
||||
current_version->wProductType );
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetProductInfo (NTDLL.@)
|
||||
*
|
||||
* Gives info about the current Windows product type, in a format compatible
|
||||
* with the given Windows version
|
||||
*
|
||||
* Returns TRUE if the input is valid, FALSE otherwise
|
||||
*/
|
||||
BOOLEAN WINAPI RtlGetProductInfo(DWORD dwOSMajorVersion, DWORD dwOSMinorVersion, DWORD dwSpMajorVersion,
|
||||
DWORD dwSpMinorVersion, PDWORD pdwReturnedProductType)
|
||||
{
|
||||
FIXME("(%d,%d,%d,%d,%p): stub\n", dwOSMajorVersion, dwOSMinorVersion,
|
||||
dwSpMajorVersion, dwSpMinorVersion, pdwReturnedProductType);
|
||||
|
||||
*pdwReturnedProductType = PRODUCT_ULTIMATE_N;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RtlGetVersion (NTDLL.@)
|
||||
|
Loading…
Reference in New Issue
Block a user