wbemprox: Add ProductType to win32_operatingsystem class.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50805 Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4336ed0b84
commit
733dc15bae
|
@ -247,6 +247,7 @@ static const struct column col_operatingsystem[] =
|
|||
{ L"OSProductSuite", CIM_UINT32 },
|
||||
{ L"OSType", CIM_UINT16 },
|
||||
{ L"Primary", CIM_BOOLEAN },
|
||||
{ L"ProductType", CIM_UINT32 },
|
||||
{ L"SerialNumber", CIM_STRING|COL_FLAG_DYNAMIC },
|
||||
{ L"ServicePackMajorVersion", CIM_UINT16 },
|
||||
{ L"ServicePackMinorVersion", CIM_UINT16 },
|
||||
|
@ -659,6 +660,7 @@ struct record_operatingsystem
|
|||
UINT32 osproductsuite;
|
||||
UINT16 ostype;
|
||||
int primary;
|
||||
UINT32 producttype;
|
||||
const WCHAR *serialnumber;
|
||||
UINT16 servicepackmajor;
|
||||
UINT16 servicepackminor;
|
||||
|
@ -3574,6 +3576,7 @@ static enum fill_status fill_operatingsystem( struct table *table, const struct
|
|||
rec->osproductsuite = 2461140; /* Windows XP Professional */
|
||||
rec->ostype = 18; /* WINNT */
|
||||
rec->primary = -1;
|
||||
rec->producttype = 1;
|
||||
rec->serialnumber = get_osserialnumber();
|
||||
rec->servicepackmajor = ver.wServicePackMajor;
|
||||
rec->servicepackminor = ver.wServicePackMinor;
|
||||
|
|
|
@ -1299,6 +1299,7 @@ static void test_Win32_OperatingSystem( IWbemServices *services )
|
|||
check_property( obj, L"CurrentTimeZone", VT_I2, CIM_SINT16 );
|
||||
check_property( obj, L"Manufacturer", VT_BSTR, CIM_STRING );
|
||||
check_property( obj, L"OSType", VT_I4, CIM_UINT16 );
|
||||
check_property( obj, L"ProductType", VT_I4, CIM_UINT32 );
|
||||
check_property( obj, L"ServicePackMajorVersion", VT_I4, CIM_UINT16 );
|
||||
check_property( obj, L"ServicePackMinorVersion", VT_I4, CIM_UINT16 );
|
||||
check_property( obj, L"SuiteMask", VT_I4, CIM_UINT32 );
|
||||
|
|
Loading…
Reference in New Issue