dxdiagn: Add service pack version.

This commit is contained in:
Vitaliy Margolen 2008-11-02 21:26:40 -07:00 committed by Alexandre Julliard
parent 45a2807f87
commit 59815fc205
1 changed files with 2 additions and 0 deletions

View File

@ -275,6 +275,7 @@ static HRESULT DXDiag_InitDXDiagSystemInfoContainer(IDxDiagContainer* pSubCont)
static const WCHAR dwOSMinorVersion[] = {'d','w','O','S','M','i','n','o','r','V','e','r','s','i','o','n',0}; static const WCHAR dwOSMinorVersion[] = {'d','w','O','S','M','i','n','o','r','V','e','r','s','i','o','n',0};
static const WCHAR dwOSBuildNumber[] = {'d','w','O','S','B','u','i','l','d','N','u','m','b','e','r',0}; static const WCHAR dwOSBuildNumber[] = {'d','w','O','S','B','u','i','l','d','N','u','m','b','e','r',0};
static const WCHAR dwOSPlatformID[] = {'d','w','O','S','P','l','a','t','f','o','r','m','I','D',0}; static const WCHAR dwOSPlatformID[] = {'d','w','O','S','P','l','a','t','f','o','r','m','I','D',0};
static const WCHAR szCSDVersion[] = {'s','z','C','S','D','V','e','r','s','i','o','n',0};
MEMORYSTATUSEX msex; MEMORYSTATUSEX msex;
OSVERSIONINFOW info; OSVERSIONINFOW info;
WCHAR buffer[MAX_PATH]; WCHAR buffer[MAX_PATH];
@ -298,6 +299,7 @@ static HRESULT DXDiag_InitDXDiagSystemInfoContainer(IDxDiagContainer* pSubCont)
add_prop_ui4(pSubCont, dwOSMinorVersion, info.dwMinorVersion); add_prop_ui4(pSubCont, dwOSMinorVersion, info.dwMinorVersion);
add_prop_ui4(pSubCont, dwOSBuildNumber, info.dwBuildNumber); add_prop_ui4(pSubCont, dwOSBuildNumber, info.dwBuildNumber);
add_prop_ui4(pSubCont, dwOSPlatformID, info.dwPlatformId); add_prop_ui4(pSubCont, dwOSPlatformID, info.dwPlatformId);
add_prop_str(pSubCont, szCSDVersion, info.szCSDVersion);
GetWindowsDirectoryW(buffer, MAX_PATH); GetWindowsDirectoryW(buffer, MAX_PATH);
add_prop_str(pSubCont, szWindowsDir, buffer); add_prop_str(pSubCont, szWindowsDir, buffer);