Fixes Win32_OSVERSIONINFOEX_W field types

Change-Id: Ida47d7f0d7b41d8dfec03a1fc83cb8d8637589f2
This commit is contained in:
Alessandro Pilotti 2015-09-12 02:14:59 +03:00
parent 19693618a8
commit 98e1248e69

View File

@ -108,9 +108,9 @@ class Win32_OSVERSIONINFOEX_W(ctypes.Structure):
('dwBuildNumber', wintypes.DWORD),
('dwPlatformId', wintypes.DWORD),
('szCSDVersion', wintypes.WCHAR * 128),
('wServicePackMajor', wintypes.DWORD),
('wServicePackMinor', wintypes.DWORD),
('wSuiteMask', wintypes.DWORD),
('wServicePackMajor', wintypes.WORD),
('wServicePackMinor', wintypes.WORD),
('wSuiteMask', wintypes.WORD),
('wProductType', wintypes.BYTE),
('wReserved', wintypes.BYTE)
]