2 * IDxDiagProvider Implementation
4 * Copyright 2004-2005 Raphael Junqueira
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #define NONAMELESSUNION
26 #include "dxdiag_private.h"
27 #include "wine/unicode.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(dxdiag
);
40 /* IDxDiagProvider IUnknown parts follow: */
41 static HRESULT WINAPI
IDxDiagProviderImpl_QueryInterface(PDXDIAGPROVIDER iface
, REFIID riid
, LPVOID
*ppobj
)
43 IDxDiagProviderImpl
*This
= (IDxDiagProviderImpl
*)iface
;
45 if (IsEqualGUID(riid
, &IID_IUnknown
)
46 || IsEqualGUID(riid
, &IID_IDxDiagProvider
)) {
47 IUnknown_AddRef(iface
);
52 WARN("(%p)->(%s,%p),not found\n",This
,debugstr_guid(riid
),ppobj
);
56 static ULONG WINAPI
IDxDiagProviderImpl_AddRef(PDXDIAGPROVIDER iface
) {
57 IDxDiagProviderImpl
*This
= (IDxDiagProviderImpl
*)iface
;
58 ULONG refCount
= InterlockedIncrement(&This
->ref
);
60 TRACE("(%p)->(ref before=%u)\n", This
, refCount
- 1);
67 static ULONG WINAPI
IDxDiagProviderImpl_Release(PDXDIAGPROVIDER iface
) {
68 IDxDiagProviderImpl
*This
= (IDxDiagProviderImpl
*)iface
;
69 ULONG refCount
= InterlockedDecrement(&This
->ref
);
71 TRACE("(%p)->(ref before=%u)\n", This
, refCount
+ 1);
74 HeapFree(GetProcessHeap(), 0, This
);
77 DXDIAGN_UnlockModule();
82 /* IDxDiagProvider Interface follow: */
83 static HRESULT WINAPI
IDxDiagProviderImpl_Initialize(PDXDIAGPROVIDER iface
, DXDIAG_INIT_PARAMS
* pParams
) {
84 IDxDiagProviderImpl
*This
= (IDxDiagProviderImpl
*)iface
;
85 TRACE("(%p,%p)\n", iface
, pParams
);
87 if (NULL
== pParams
) {
90 if (pParams
->dwSize
!= sizeof(DXDIAG_INIT_PARAMS
)) {
95 memcpy(&This
->params
, pParams
, pParams
->dwSize
);
99 static HRESULT WINAPI
IDxDiagProviderImpl_GetRootContainer(PDXDIAGPROVIDER iface
, IDxDiagContainer
** ppInstance
) {
101 IDxDiagProviderImpl
*This
= (IDxDiagProviderImpl
*)iface
;
102 TRACE("(%p,%p)\n", iface
, ppInstance
);
104 if (NULL
== ppInstance
) {
107 if (FALSE
== This
->init
) {
108 return E_INVALIDARG
; /* should be E_CO_UNINITIALIZED */
110 if (NULL
== This
->pRootContainer
) {
111 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &This
->pRootContainer
);
115 hr
= DXDiag_InitRootDXDiagContainer(This
->pRootContainer
);
117 return IDxDiagContainerImpl_QueryInterface((PDXDIAGCONTAINER
)This
->pRootContainer
, &IID_IDxDiagContainer
, (void**) ppInstance
);
120 static const IDxDiagProviderVtbl DxDiagProvider_Vtbl
=
122 IDxDiagProviderImpl_QueryInterface
,
123 IDxDiagProviderImpl_AddRef
,
124 IDxDiagProviderImpl_Release
,
125 IDxDiagProviderImpl_Initialize
,
126 IDxDiagProviderImpl_GetRootContainer
129 HRESULT
DXDiag_CreateDXDiagProvider(LPCLASSFACTORY iface
, LPUNKNOWN punkOuter
, REFIID riid
, LPVOID
*ppobj
) {
130 IDxDiagProviderImpl
* provider
;
132 TRACE("(%p, %s, %p)\n", punkOuter
, debugstr_guid(riid
), ppobj
);
134 provider
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IDxDiagProviderImpl
));
135 if (NULL
== provider
) {
137 return E_OUTOFMEMORY
;
139 provider
->lpVtbl
= &DxDiagProvider_Vtbl
;
140 provider
->ref
= 0; /* will be inited with QueryInterface */
141 return IDxDiagProviderImpl_QueryInterface ((PDXDIAGPROVIDER
)provider
, riid
, ppobj
);
144 static inline HRESULT
add_prop_str( IDxDiagContainer
* cont
, LPCWSTR prop
, LPCWSTR str
)
149 V_VT( &var
) = VT_BSTR
;
150 V_BSTR( &var
) = SysAllocString( str
);
151 hr
= IDxDiagContainerImpl_AddProp( cont
, prop
, &var
);
152 VariantClear( &var
);
157 static inline HRESULT
add_prop_ui4( IDxDiagContainer
* cont
, LPCWSTR prop
, DWORD data
)
162 V_VT( &var
) = VT_UI4
;
163 V_UI4( &var
) = data
;
164 hr
= IDxDiagContainerImpl_AddProp( cont
, prop
, &var
);
165 VariantClear( &var
);
171 * @param szFilePath: usually GetSystemDirectoryW
172 * @param szFileName: name of the dll without path
174 static HRESULT
DXDiag_AddFileDescContainer(IDxDiagContainer
* pSubCont
, const WCHAR
* szFilePath
, const WCHAR
* szFileName
) {
177 static const WCHAR szSlashSep
[] = {'\\',0};
178 static const WCHAR szPath
[] = {'s','z','P','a','t','h',0};
179 static const WCHAR szName
[] = {'s','z','N','a','m','e',0};
180 static const WCHAR szVersion
[] = {'s','z','V','e','r','s','i','o','n',0};
181 static const WCHAR szAttributes
[] = {'s','z','A','t','t','r','i','b','u','t','e','s',0};
182 static const WCHAR szLanguageEnglish
[] = {'s','z','L','a','n','g','u','a','g','e','E','n','g','l','i','s','h',0};
183 static const WCHAR dwFileTimeHigh
[] = {'d','w','F','i','l','e','T','i','m','e','H','i','g','h',0};
184 static const WCHAR dwFileTimeLow
[] = {'d','w','F','i','l','e','T','i','m','e','L','o','w',0};
185 static const WCHAR bBeta
[] = {'b','B','e','t','a',0};
186 static const WCHAR bDebug
[] = {'b','D','e','b','u','g',0};
187 static const WCHAR bExists
[] = {'b','E','x','i','s','t','s',0};
189 static const WCHAR szFinal_Retail_v
[] = {'F','i','n','a','l',' ','R','e','t','a','i','l',0};
190 static const WCHAR szEnglish_v
[] = {'E','n','g','l','i','s','h',0};
191 static const WCHAR szVersionFormat
[] = {'%','u','.','%','0','2','u','.','%','0','4','u','.','%','0','4','u',0};
195 WCHAR szVersion_v
[1024];
200 VS_FIXEDFILEINFO
* pFileInfo
;
202 FIXME("(%p,%s)\n", pSubCont
, debugstr_w(szFileName
));
204 lstrcpyW(szFile
, szFilePath
);
205 lstrcatW(szFile
, szSlashSep
);
206 lstrcatW(szFile
, szFileName
);
208 retval
= GetFileVersionInfoSizeW(szFile
, &hdl
);
209 pVersionInfo
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, retval
);
210 boolret
= GetFileVersionInfoW(szFile
, 0, retval
, pVersionInfo
);
211 boolret
= VerQueryValueW(pVersionInfo
, szSlashSep
, (LPVOID
) &pFileInfo
, &uiLength
);
213 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(szFile
);
214 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szPath
, &v
);
216 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(szFileName
);
217 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szName
, &v
);
219 V_VT(&v
) = VT_BOOL
; V_BOOL(&v
) = boolret
;
220 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, bExists
, &v
);
224 snprintfW(szVersion_v
, sizeof(szVersion_v
)/sizeof(szVersion_v
[0]),
226 HIWORD(pFileInfo
->dwFileVersionMS
),
227 LOWORD(pFileInfo
->dwFileVersionMS
),
228 HIWORD(pFileInfo
->dwFileVersionLS
),
229 LOWORD(pFileInfo
->dwFileVersionLS
));
231 TRACE("Found version as (%s)\n", debugstr_w(szVersion_v
));
233 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(szVersion_v
);
234 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szVersion
, &v
);
236 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(szFinal_Retail_v
);
237 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szAttributes
, &v
);
239 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(szEnglish_v
);
240 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szLanguageEnglish
, &v
);
242 V_VT(&v
) = VT_UI4
; V_UI4(&v
) = pFileInfo
->dwFileDateMS
;
243 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, dwFileTimeHigh
, &v
);
245 V_VT(&v
) = VT_UI4
; V_UI4(&v
) = pFileInfo
->dwFileDateLS
;
246 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, dwFileTimeLow
, &v
);
248 V_VT(&v
) = VT_BOOL
; V_BOOL(&v
) = (0 != ((pFileInfo
->dwFileFlags
& pFileInfo
->dwFileFlagsMask
) & VS_FF_PRERELEASE
));
249 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, bBeta
, &v
);
251 V_VT(&v
) = VT_BOOL
; V_BOOL(&v
) = (0 != ((pFileInfo
->dwFileFlags
& pFileInfo
->dwFileFlagsMask
) & VS_FF_DEBUG
));
252 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, bDebug
, &v
);
256 HeapFree(GetProcessHeap(), 0, pVersionInfo
);
261 static HRESULT
DXDiag_InitDXDiagSystemInfoContainer(IDxDiagContainer
* pSubCont
) {
263 static const WCHAR dwDirectXVersionMajor
[] = {'d','w','D','i','r','e','c','t','X','V','e','r','s','i','o','n','M','a','j','o','r',0};
264 static const WCHAR dwDirectXVersionMinor
[] = {'d','w','D','i','r','e','c','t','X','V','e','r','s','i','o','n','M','i','n','o','r',0};
265 static const WCHAR szDirectXVersionLetter
[] = {'s','z','D','i','r','e','c','t','X','V','e','r','s','i','o','n','L','e','t','t','e','r',0};
266 static const WCHAR szDirectXVersionLetter_v
[] = {'c',0};
267 static const WCHAR bDebug
[] = {'b','D','e','b','u','g',0};
268 static const WCHAR szDirectXVersionEnglish
[] = {'s','z','D','i','r','e','c','t','X','V','e','r','s','i','o','n','E','n','g','l','i','s','h',0};
269 static const WCHAR szDirectXVersionEnglish_v
[] = {'4','.','0','9','.','0','0','0','0','.','0','9','0','4',0};
270 static const WCHAR szDirectXVersionLongEnglish
[] = {'s','z','D','i','r','e','c','t','X','V','e','r','s','i','o','n','L','o','n','g','E','n','g','l','i','s','h',0};
271 static const WCHAR szDirectXVersionLongEnglish_v
[] = {'=',' ','"','D','i','r','e','c','t','X',' ','9','.','0','c',' ','(','4','.','0','9','.','0','0','0','0','.','0','9','0','4',')',0};
272 static const WCHAR ullPhysicalMemory
[] = {'u','l','l','P','h','y','s','i','c','a','l','M','e','m','o','r','y',0};
273 /*static const WCHAR szDxDiagVersion[] = {'s','z','D','x','D','i','a','g','V','e','r','s','i','o','n',0};*/
276 /*"dwOSMajorVersion"*/
277 /*"dwOSMinorVersion"*/
278 /*"dwOSBuildNumber"*/
283 V_VT(&v
) = VT_UI4
; V_UI4(&v
) = 9;
284 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, dwDirectXVersionMajor
, &v
);
286 V_VT(&v
) = VT_UI4
; V_UI4(&v
) = 0;
287 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, dwDirectXVersionMinor
, &v
);
289 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(szDirectXVersionLetter_v
);
290 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szDirectXVersionLetter
, &v
);
292 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(szDirectXVersionEnglish_v
);
293 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szDirectXVersionEnglish
, &v
);
295 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(szDirectXVersionLongEnglish_v
);
296 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szDirectXVersionLongEnglish
, &v
);
298 V_VT(&v
) = VT_BOOL
; V_BOOL(&v
) = FALSE
;
299 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, bDebug
, &v
);
302 msex
.dwLength
= sizeof(msex
);
303 GlobalMemoryStatusEx( &msex
);
305 V_UI8(&v
) = msex
.ullTotalPhys
;
306 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, ullPhysicalMemory
, &v
);
312 static HRESULT
DXDiag_InitDXDiagSystemDevicesContainer(IDxDiagContainer
* pSubCont
) {
315 static const WCHAR szDescription[] = {'s','z','D','e','s','c','r','i','p','t','i','o','n',0};
316 static const WCHAR szDeviceID[] = {'s','z','D','e','v','i','c','e','I','D',0};
318 static const WCHAR szDrivers[] = {'s','z','D','r','i','v','e','r','s',0};
321 IDxDiagContainer* pDeviceSubCont = NULL;
322 IDxDiagContainer* pDriversCont = NULL;
324 hr = DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer, (void**) &pDeviceSubCont);
325 if (FAILED(hr)) { return hr; }
326 V_VT(pvarProp) = VT_BSTR; V_BSTR(pvarProp) = SysAllocString(property->psz);
327 hr = IDxDiagContainerImpl_AddProp(pDeviceSubCont, szDescription, &v);
329 V_VT(pvarProp) = VT_BSTR; V_BSTR(pvarProp) = SysAllocString(property->psz);
330 hr = IDxDiagContainerImpl_AddProp(pDeviceSubCont, szDeviceID, &v);
333 hr = IDxDiagContainerImpl_AddChildContainer(pSubCont, "", pDeviceSubCont);
337 * Drivers Cont contains Files Desc Containers
340 hr = DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer, (void**) &pDriversCont);
341 if (FAILED(hr)) { return hr; }
342 hr = IDxDiagContainerImpl_AddChildContainer(pDeviceSubCont, szDrivers, pDriversCont);
348 static HRESULT
DXDiag_InitDXDiagLogicalDisksContainer(IDxDiagContainer
* pSubCont
) {
351 static const WCHAR szDriveLetter[] = {'s','z','D','r','i','v','e','L','e','t','t','e','r',0};
352 static const WCHAR szFreeSpace[] = {'s','z','F','r','e','e','S','p','a','c','e',0};
353 static const WCHAR szMaxSpace[] = {'s','z','M','a','x','S','p','a','c','e',0};
354 static const WCHAR szFileSystem[] = {'s','z','F','i','l','e','S','y','s','t','e','m',0};
355 static const WCHAR szModel[] = {'s','z','M','o','d','e','l',0};
356 static const WCHAR szPNPDeviceID[] = {'s','z','P','N','P','D','e','v','i','c','e','I','D',0};
357 static const WCHAR dwHardDriveIndex[] = {'d','w','H','a','r','d','D','r','i','v','e','I','n','d','e','x',0};
359 static const WCHAR szDrivers[] = {'s','z','D','r','i','v','e','r','s',0};
362 IDxDiagContainer* pDiskSubCont = NULL;
363 IDxDiagContainer* pDriversCont = NULL;
365 hr = DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer, (void**) &pDiskSubCont);
366 if (FAILED(hr)) { return hr; }
367 hr = IDxDiagContainerImpl_AddChildContainer(pSubCont, "" , pDiskSubCont);
371 * Drivers Cont contains Files Desc Containers
374 hr = DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer, (void**) &pDriversCont);
375 if (FAILED(hr)) { return hr; }
376 hr = IDxDiagContainerImpl_AddChildContainer(pDeviceSubCont, szDrivers, pDriversCont);
380 static HRESULT
DXDiag_InitDXDiagDirectXFilesContainer(IDxDiagContainer
* pSubCont
) {
383 static const WCHAR ddraw_dll
[] = {'d','d','r','a','w','.','d','l','l',0};
384 static const WCHAR dplayx_dll
[] = {'d','p','l','a','y','x','.','d','l','l',0};
385 static const WCHAR dpnet_dll
[] = {'d','p','n','e','t','.','d','l','l',0};
386 static const WCHAR dinput_dll
[] = {'d','i','n','p','u','t','.','d','l','l',0};
387 static const WCHAR dinput8_dll
[] = {'d','i','n','p','u','t','8','.','d','l','l',0};
388 static const WCHAR dsound_dll
[] = {'d','s','o','u','n','d','.','d','l','l',0};
389 static const WCHAR dswave_dll
[] = {'d','s','w','a','v','e','.','d','l','l',0};
390 static const WCHAR d3d8_dll
[] = {'d','3','d','8','.','d','l','l',0};
391 static const WCHAR d3d9_dll
[] = {'d','3','d','9','.','d','l','l',0};
392 static const WCHAR dmband_dll
[] = {'d','m','b','a','n','d','.','d','l','l',0};
393 static const WCHAR dmcompos_dll
[] = {'d','m','c','o','m','p','o','s','.','d','l','l',0};
394 static const WCHAR dmime_dll
[] = {'d','m','i','m','e','.','d','l','l',0};
395 static const WCHAR dmloader_dll
[] = {'d','m','l','o','a','d','e','r','.','d','l','l',0};
396 static const WCHAR dmscript_dll
[] = {'d','m','s','c','r','i','p','t','.','d','l','l',0};
397 static const WCHAR dmstyle_dll
[] = {'d','m','s','t','y','l','e','.','d','l','l',0};
398 static const WCHAR dmsynth_dll
[] = {'d','m','s','y','n','t','h','.','d','l','l',0};
399 static const WCHAR dmusic_dll
[] = {'d','m','u','s','i','c','.','d','l','l',0};
400 static const WCHAR devenum_dll
[] = {'d','e','v','e','n','u','m','.','d','l','l',0};
401 static const WCHAR quartz_dll
[] = {'q','u','a','r','t','z','.','d','l','l',0};
402 WCHAR szFilePath
[512];
404 hr
= GetSystemDirectoryW(szFilePath
, MAX_PATH
);
405 if (FAILED(hr
)) { return hr
; }
406 szFilePath
[MAX_PATH
-1]=0;
408 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, ddraw_dll
);
409 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dplayx_dll
);
410 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dpnet_dll
);
411 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dinput_dll
);
412 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dinput8_dll
);
413 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dsound_dll
);
414 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dswave_dll
);
415 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, d3d8_dll
);
416 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, d3d9_dll
);
417 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dmband_dll
);
418 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dmcompos_dll
);
419 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dmime_dll
);
420 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dmloader_dll
);
421 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dmscript_dll
);
422 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dmstyle_dll
);
423 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dmsynth_dll
);
424 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, dmusic_dll
);
425 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, devenum_dll
);
426 hr
= DXDiag_AddFileDescContainer(pSubCont
, szFilePath
, quartz_dll
);
430 static HRESULT
DXDiag_InitDXDiagDisplayContainer(IDxDiagContainer
* pSubCont
)
432 static const WCHAR szDescription
[] = {'s','z','D','e','s','c','r','i','p','t','i','o','n',0};
433 static const WCHAR szDeviceName
[] = {'s','z','D','e','v','i','c','e','N','a','m','e',0};
434 static const WCHAR szKeyDeviceID
[] = {'s','z','K','e','y','D','e','v','i','c','e','I','D',0};
435 static const WCHAR szKeyDeviceKey
[] = {'s','z','K','e','y','D','e','v','i','c','e','K','e','y',0};
436 static const WCHAR szVendorId
[] = {'s','z','V','e','n','d','o','r','I','d',0};
437 static const WCHAR szDeviceId
[] = {'s','z','D','e','v','i','c','e','I','d',0};
438 static const WCHAR dwWidth
[] = {'d','w','W','i','d','t','h',0};
439 static const WCHAR dwHeight
[] = {'d','w','H','e','i','g','h','t',0};
440 static const WCHAR dwBpp
[] = {'d','w','B','p','p',0};
441 static const WCHAR szDisplayMemoryLocalized
[] = {'s','z','D','i','s','p','l','a','y','M','e','m','o','r','y','L','o','c','a','l','i','z','e','d',0};
442 static const WCHAR szDisplayMemoryEnglish
[] = {'s','z','D','i','s','p','l','a','y','M','e','m','o','r','y','E','n','g','l','i','s','h',0};
444 static const WCHAR szAdapterID
[] = {'0',0};
445 static const WCHAR szEmpty
[] = {0};
448 IDxDiagContainer
*pDisplayAdapterSubCont
= NULL
;
450 IDirectDraw7
*pDirectDraw
;
452 DISPLAY_DEVICEW disp_dev
;
453 DDSURFACEDESC2 surface_descr
;
457 hr
= DXDiag_CreateDXDiagContainer( &IID_IDxDiagContainer
, (void**) &pDisplayAdapterSubCont
);
458 if (FAILED( hr
)) return hr
;
459 hr
= IDxDiagContainerImpl_AddChildContainer( pSubCont
, szAdapterID
, pDisplayAdapterSubCont
);
460 if (FAILED( hr
)) return hr
;
462 if (EnumDisplayDevicesW( NULL
, 0, &disp_dev
, 0 ))
464 add_prop_str( pDisplayAdapterSubCont
, szDeviceName
, disp_dev
.DeviceName
);
465 add_prop_str( pDisplayAdapterSubCont
, szDescription
, disp_dev
.DeviceString
);
468 hr
= DirectDrawCreateEx( NULL
, (LPVOID
*)&pDirectDraw
, &IID_IDirectDraw7
, NULL
);
469 if (FAILED( hr
)) return hr
;
471 dd_caps
.dwCaps
= DDSCAPS_LOCALVIDMEM
| DDSCAPS_VIDEOMEMORY
;
472 dd_caps
.dwCaps2
= dd_caps
.dwCaps3
= dd_caps
.dwCaps4
= 0;
473 hr
= IDirectDraw7_GetAvailableVidMem( pDirectDraw
, &dd_caps
, &tmp
, NULL
);
476 static const WCHAR mem_fmt
[] = {'%','.','1','f',' ','M','B',0};
478 snprintfW( buffer
, sizeof(buffer
)/sizeof(buffer
[0]), mem_fmt
, ((float)tmp
) / 1000000.0 );
479 add_prop_str( pDisplayAdapterSubCont
, szDisplayMemoryLocalized
, buffer
);
480 add_prop_str( pDisplayAdapterSubCont
, szDisplayMemoryEnglish
, buffer
);
483 surface_descr
.dwSize
= sizeof(surface_descr
);
484 hr
= IDirectDraw7_GetDisplayMode( pDirectDraw
, &surface_descr
);
487 if (surface_descr
.dwFlags
& DDSD_WIDTH
)
488 add_prop_ui4( pDisplayAdapterSubCont
, dwWidth
, surface_descr
.dwWidth
);
489 if (surface_descr
.dwFlags
& DDSD_HEIGHT
)
490 add_prop_ui4( pDisplayAdapterSubCont
, dwHeight
, surface_descr
.dwHeight
);
491 if (surface_descr
.dwFlags
& DDSD_PIXELFORMAT
)
492 add_prop_ui4( pDisplayAdapterSubCont
, dwBpp
, surface_descr
.u4
.ddpfPixelFormat
.u1
.dwRGBBitCount
);
495 add_prop_str( pDisplayAdapterSubCont
, szVendorId
, szEmpty
);
496 add_prop_str( pDisplayAdapterSubCont
, szDeviceId
, szEmpty
);
497 add_prop_str( pDisplayAdapterSubCont
, szKeyDeviceKey
, szEmpty
);
498 add_prop_str( pDisplayAdapterSubCont
, szKeyDeviceID
, szEmpty
);
500 IUnknown_Release( pDirectDraw
);
504 static HRESULT
DXDiag_InitDXDiagDirectSoundContainer(IDxDiagContainer
* pSubCont
) {
506 static const WCHAR DxDiag_SoundDevices
[] = {'D','x','D','i','a','g','_','S','o','u','n','d','D','e','v','i','c','e','s',0};
507 static const WCHAR DxDiag_SoundCaptureDevices
[] = {'D','x','D','i','a','g','_','S','o','u','n','d','C','a','p','t','u','r','e','D','e','v','i','c','e','s',0};
508 IDxDiagContainer
* pSubSubCont
= NULL
;
510 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubSubCont
);
511 if (FAILED(hr
)) { return hr
; }
512 hr
= IDxDiagContainerImpl_AddChildContainer(pSubCont
, DxDiag_SoundDevices
, pSubSubCont
);
514 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubSubCont
);
515 if (FAILED(hr
)) { return hr
; }
516 hr
= IDxDiagContainerImpl_AddChildContainer(pSubCont
, DxDiag_SoundCaptureDevices
, pSubSubCont
);
521 static HRESULT
DXDiag_InitDXDiagDirectMusicContainer(IDxDiagContainer
* pSubCont
) {
526 static HRESULT
DXDiag_InitDXDiagDirectInputContainer(IDxDiagContainer
* pSubCont
) {
531 static HRESULT
DXDiag_InitDXDiagDirectPlayContainer(IDxDiagContainer
* pSubCont
) {
543 BYTE signature
[4]; /* e.g. "0pi3" */
548 DWORD bCategory
; /* is there a category clsid? */
549 /* optional: dwOffsetCategoryClsid */
552 BYTE signature
[4]; /* e.g. "0ty3" */
558 static HRESULT
DXDiag_InitDXDiagDirectShowFiltersContainer(IDxDiagContainer
* pSubCont
) {
560 static const WCHAR szName
[] = {'s','z','N','a','m','e',0};
561 static const WCHAR szCatName
[] = {'s','z','C','a','t','N','a','m','e',0};
562 static const WCHAR szClsidCat
[] = {'s','z','C','l','s','i','d','C','a','t',0};
563 static const WCHAR szClsidFilter
[] = {'s','z','C','l','s','i','d','F','i','l','t','e','r',0};
564 static const WCHAR dwInputs
[] = {'d','w','I','n','p','u','t','s',0};
565 static const WCHAR dwOutputs
[] = {'d','w','O','u','t','p','u','t','s',0};
566 static const WCHAR dwMerit
[] = {'d','w','M','e','r','i','t',0};
568 static const WCHAR szFileName[] = {'s','z','F','i','l','e','N','a','m','e',0};
569 static const WCHAR szFileVersion[] = {'s','z','F','i','l','e','V','e','r','s','i','o','n',0};
573 static const WCHAR wszClsidName
[] = {'C','L','S','I','D',0};
574 static const WCHAR wszFriendlyName
[] = {'F','r','i','e','n','d','l','y','N','a','m','e',0};
575 static const WCHAR wszFilterDataName
[] = {'F','i','l','t','e','r','D','a','t','a',0};
576 /*static const WCHAR wszMeritName[] = {'M','e','r','i','t',0};*/
578 ICreateDevEnum
* pCreateDevEnum
= NULL
;
579 IEnumMoniker
* pEmCat
= NULL
;
580 IMoniker
* pMCat
= NULL
;
582 hr
= CoCreateInstance(&CLSID_SystemDeviceEnum
,
584 CLSCTX_INPROC_SERVER
,
586 (void**) &pCreateDevEnum
);
587 if (FAILED(hr
)) return hr
;
589 hr
= ICreateDevEnum_CreateClassEnumerator(pCreateDevEnum
, &CLSID_ActiveMovieCategories
, &pEmCat
, 0);
590 if (FAILED(hr
)) goto out_show_filters
;
594 while (S_OK
== IEnumMoniker_Next(pEmCat
, 1, &pMCat
, NULL
)) {
595 IPropertyBag
* pPropBag
= NULL
;
597 hr
= IMoniker_BindToStorage(pMCat
, NULL
, NULL
, &IID_IPropertyBag
, (void**) &pPropBag
);
599 WCHAR
* wszCatName
= NULL
;
600 WCHAR
* wszCatClsid
= NULL
;
602 hr
= IPropertyBag_Read(pPropBag
, wszFriendlyName
, &v
, 0);
603 wszCatName
= SysAllocString(V_BSTR(&v
));
606 hr
= IPropertyBag_Read(pPropBag
, wszClsidName
, &v
, 0);
607 wszCatClsid
= SysAllocString(V_BSTR(&v
));
608 hr
= CLSIDFromString(V_UNION(&v
, bstrVal
), &clsidCat
);
612 hr = IPropertyBag_Read(pPropBag, wszMeritName, &v, 0);
613 hr = IDxDiagContainerImpl_AddProp(pSubCont, dwMerit, &v);
618 IEnumMoniker
* pEnum
= NULL
;
619 IMoniker
* pMoniker
= NULL
;
620 hr
= ICreateDevEnum_CreateClassEnumerator(pCreateDevEnum
, &clsidCat
, &pEnum
, 0);
621 FIXME("\tClassEnumerator for clsid(%s) pEnum(%p)\n", debugstr_guid(&clsidCat
), pEnum
);
622 if (FAILED(hr
) || pEnum
== NULL
) {
623 goto class_enum_failed
;
625 while (NULL
!= pEnum
&& S_OK
== IEnumMoniker_Next(pEnum
, 1, &pMoniker
, NULL
)) {
626 IPropertyBag
* pPropFilterBag
= NULL
;
627 FIXME("\tIEnumMoniker_Next(%p, 1, %p)\n", pEnum
, pMoniker
);
628 hr
= IMoniker_BindToStorage(pMoniker
, NULL
, NULL
, &IID_IPropertyBag
, (void**) &pPropFilterBag
);
631 LPBYTE pCurrent
= NULL
;
632 struct REG_RF
* prrf
= NULL
;
635 DWORD dwNOutputs
= 0;
638 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(wszCatName
);
639 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szCatName
, &v
);
642 V_VT(&v
) = VT_BSTR
; V_BSTR(&v
) = SysAllocString(wszCatClsid
);
643 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szClsidCat
, &v
);
646 hr
= IPropertyBag_Read(pPropFilterBag
, wszFriendlyName
, &v
, 0);
647 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szName
, &v
);
648 FIXME("\tName:%s\n", debugstr_w(V_BSTR(&v
)));
651 hr
= IPropertyBag_Read(pPropFilterBag
, wszClsidName
, &v
, 0);
652 FIXME("\tClsid:%s\n", debugstr_w(V_BSTR(&v
)));
653 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szClsidFilter
, &v
);
656 hr
= IPropertyBag_Read(pPropFilterBag
, wszFilterDataName
, &v
, NULL
);
657 hr
= SafeArrayAccessData(V_UNION(&v
, parray
), (LPVOID
*) &pData
);
658 prrf
= (struct REG_RF
*) pData
;
661 VariantInit(&v_data
);
662 V_VT(&v_data
) = VT_UI4
; V_UI4(&v_data
) = prrf
->dwVersion
;
663 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, szName
, &v_data
);
664 VariantClear(&v_data
);
665 V_VT(&v_data
) = VT_UI4
; V_UI4(&v_data
) = prrf
->dwMerit
;
666 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, dwMerit
, &v_data
);
667 VariantClear(&v_data
);
669 pCurrent
+= sizeof(struct REG_RF
);
670 for (it
= 0; it
< prrf
->dwPins
; ++it
) {
671 struct REG_RFP
* prrfp
= (struct REG_RFP
*) pCurrent
;
674 if (prrfp
->dwFlags
& REG_PINFLAG_B_OUTPUT
) ++dwNOutputs
;
677 pCurrent
+= sizeof(struct REG_RFP
);
678 if (prrfp
->bCategory
) {
679 pCurrent
+= sizeof(DWORD
);
681 for (j
= 0; j
< prrfp
->dwMediaTypes
; ++j
) {
682 struct REG_TYPE
* prt
= (struct REG_TYPE
*)pCurrent
;
683 pCurrent
+= sizeof(*prt
);
685 for (j
= 0; j
< prrfp
->dwMediums
; ++j
) {
686 DWORD dwOffset
= *(DWORD
*) pCurrent
;
687 pCurrent
+= sizeof(dwOffset
);
691 V_VT(&v_data
) = VT_UI4
; V_UI4(&v_data
) = dwNInputs
;
692 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, dwInputs
, &v_data
);
693 VariantClear(&v_data
);
694 V_VT(&v_data
) = VT_UI4
; V_UI4(&v_data
) = dwNOutputs
;
695 hr
= IDxDiagContainerImpl_AddProp(pSubCont
, dwOutputs
, &v_data
);
696 VariantClear(&v_data
);
698 SafeArrayUnaccessData(V_UNION(&v
, parray
));
701 IPropertyBag_Release(pPropFilterBag
); pPropFilterBag
= NULL
;
703 IEnumMoniker_Release(pEnum
); pEnum
= NULL
;
706 SysFreeString(wszCatName
);
707 SysFreeString(wszCatClsid
);
708 IPropertyBag_Release(pPropBag
); pPropBag
= NULL
;
710 IEnumMoniker_Release(pMCat
); pMCat
= NULL
;
714 if (NULL
!= pEmCat
) { IEnumMoniker_Release(pEmCat
); pEmCat
= NULL
; }
715 if (NULL
!= pCreateDevEnum
) { ICreateDevEnum_Release(pCreateDevEnum
); pCreateDevEnum
= NULL
; }
719 HRESULT
DXDiag_InitRootDXDiagContainer(IDxDiagContainer
* pRootCont
) {
721 static const WCHAR DxDiag_SystemInfo
[] = {'D','x','D','i','a','g','_','S','y','s','t','e','m','I','n','f','o',0};
722 static const WCHAR DxDiag_SystemDevices
[] = {'D','x','D','i','a','g','_','S','y','s','t','e','m','D','e','v','i','c','e','s',0};
723 static const WCHAR DxDiag_LogicalDisks
[] = {'D','x','D','i','a','g','_','L','o','g','i','c','a','l','D','i','s','k','s',0};
724 static const WCHAR DxDiag_DirectXFiles
[] = {'D','x','D','i','a','g','_','D','i','r','e','c','t','X','F','i','l','e','s',0};
725 static const WCHAR DxDiag_DisplayDevices
[] = {'D','x','D','i','a','g','_','D','i','s','p','l','a','y','D','e','v','i','c','e','s',0};
726 static const WCHAR DxDiag_DirectSound
[] = {'D','x','D','i','a','g','_','D','i','r','e','c','t','S','o','u','n','d',0};
727 static const WCHAR DxDiag_DirectMusic
[] = {'D','x','D','i','a','g','_','D','i','r','e','c','t','M','u','s','i','c',0};
728 static const WCHAR DxDiag_DirectInput
[] = {'D','x','D','i','a','g','_','D','i','r','e','c','t','I','n','p','u','t',0};
729 static const WCHAR DxDiag_DirectPlay
[] = {'D','x','D','i','a','g','_','D','i','r','e','c','t','P','l','a','y',0};
730 static const WCHAR DxDiag_DirectShowFilters
[] = {'D','x','D','i','a','g','_','D','i','r','e','c','t','S','h','o','w','F','i','l','t','e','r','s',0};
731 IDxDiagContainer
* pSubCont
= NULL
;
733 TRACE("(%p)\n", pRootCont
);
735 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
736 if (FAILED(hr
)) { return hr
; }
737 hr
= DXDiag_InitDXDiagSystemInfoContainer(pSubCont
);
738 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_SystemInfo
, pSubCont
);
740 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
741 if (FAILED(hr
)) { return hr
; }
742 hr
= DXDiag_InitDXDiagSystemDevicesContainer(pSubCont
);
743 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_SystemDevices
, pSubCont
);
745 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
746 if (FAILED(hr
)) { return hr
; }
747 hr
= DXDiag_InitDXDiagLogicalDisksContainer(pSubCont
);
748 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_LogicalDisks
, pSubCont
);
750 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
751 if (FAILED(hr
)) { return hr
; }
752 hr
= DXDiag_InitDXDiagDirectXFilesContainer(pSubCont
);
753 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_DirectXFiles
, pSubCont
);
755 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
756 if (FAILED(hr
)) { return hr
; }
757 hr
= DXDiag_InitDXDiagDisplayContainer(pSubCont
);
758 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_DisplayDevices
, pSubCont
);
760 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
761 if (FAILED(hr
)) { return hr
; }
762 hr
= DXDiag_InitDXDiagDirectSoundContainer(pSubCont
);
763 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_DirectSound
, pSubCont
);
765 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
766 if (FAILED(hr
)) { return hr
; }
767 hr
= DXDiag_InitDXDiagDirectMusicContainer(pSubCont
);
768 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_DirectMusic
, pSubCont
);
770 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
771 if (FAILED(hr
)) { return hr
; }
772 hr
= DXDiag_InitDXDiagDirectInputContainer(pSubCont
);
773 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_DirectInput
, pSubCont
);
775 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
776 if (FAILED(hr
)) { return hr
; }
777 hr
= DXDiag_InitDXDiagDirectPlayContainer(pSubCont
);
778 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_DirectPlay
, pSubCont
);
780 hr
= DXDiag_CreateDXDiagContainer(&IID_IDxDiagContainer
, (void**) &pSubCont
);
781 if (FAILED(hr
)) { return hr
; }
782 hr
= DXDiag_InitDXDiagDirectShowFiltersContainer(pSubCont
);
783 hr
= IDxDiagContainerImpl_AddChildContainer(pRootCont
, DxDiag_DirectShowFilters
, pSubCont
);