reupload this
This commit is contained in:
22
product.c
Normal file
22
product.c
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "progwrp.h"
|
||||
#include "export.h"
|
||||
#include "implementations.h"
|
||||
|
||||
BOOL WINAPI Implementation_GetProductInfo(
|
||||
DWORD dwOSMajorVersion,
|
||||
DWORD dwOSMinorVersion,
|
||||
DWORD dwSpMajorVersion,
|
||||
DWORD dwSpMinorVersion,
|
||||
PDWORD pdwReturnedProductType
|
||||
)
|
||||
{
|
||||
if(!pdwReturnedProductType)
|
||||
{
|
||||
SetLastError(STATUS_INVALID_PARAMETER);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
*pdwReturnedProductType = PRODUCT_ULTIMATE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
Reference in New Issue
Block a user