- Sync with trunk r58248 to bring the latest changes from Amine (headers) and others...
[reactos.git] / dll / directx / dxdiagn / dxdiag_private.h
1 /*
2 * DXDiag private include file
3 *
4 * Copyright 2004 Raphael Junqueira
5 *
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.
10 *
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.
15 *
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #ifndef __WINE_DXDIAG_PRIVATE_H
22 #define __WINE_DXDIAG_PRIVATE_H
23
24 #define WIN32_NO_STATUS
25 #define _INC_WINDOWS
26 #define COM_NO_WINDOWS_H
27
28 #include <stdarg.h>
29
30 #include <windef.h>
31 #include <winbase.h>
32 //#include "wingdi.h"
33 //#include "winuser.h"
34 //#include "objbase.h"
35 //#include "oleauto.h"
36
37 #include <dxdiag.h>
38
39 /* DXDiag Interfaces: */
40 typedef struct IDxDiagProviderImpl IDxDiagProviderImpl;
41 typedef struct IDxDiagContainerImpl IDxDiagContainerImpl;
42
43 /* ---------------- */
44 /* IDxDiagProvider */
45 /* ---------------- */
46
47 /*****************************************************************************
48 * IDxDiagProvider implementation structure
49 */
50 struct IDxDiagProviderImpl {
51 /* IUnknown fields */
52 const IDxDiagProviderVtbl *lpVtbl;
53 LONG ref;
54 /* IDxDiagProvider fields */
55 BOOL init;
56 DXDIAG_INIT_PARAMS params;
57 IDxDiagContainer* pRootContainer;
58 };
59
60 /* IUnknown: */
61 extern HRESULT WINAPI IDxDiagProviderImpl_QueryInterface(PDXDIAGPROVIDER iface, REFIID riid, LPVOID *ppobj);
62 extern ULONG WINAPI IDxDiagProviderImpl_AddRef(PDXDIAGPROVIDER iface);
63 extern ULONG WINAPI IDxDiagProviderImpl_Release(PDXDIAGPROVIDER iface);
64
65 /* IDxDiagProvider: */
66 extern HRESULT WINAPI IDxDiagProviderImpl_Initialize(PDXDIAGPROVIDER iface, DXDIAG_INIT_PARAMS* pParams);
67 extern HRESULT WINAPI IDxDiagProviderImpl_GetRootContainer(PDXDIAGPROVIDER iface, IDxDiagContainer** ppInstance);
68
69 /* ---------------- */
70 /* IDxDiagContainer */
71 /* ---------------- */
72
73 typedef struct IDxDiagContainerImpl_SubContainer {
74 IDxDiagContainer* pCont;
75 WCHAR* contName;
76 struct IDxDiagContainerImpl_SubContainer* next;
77 } IDxDiagContainerImpl_SubContainer;
78
79 typedef struct IDxDiagContainerImpl_Property {
80 LPWSTR vName;
81 VARIANT v;
82 struct IDxDiagContainerImpl_Property* next;
83 } IDxDiagContainerImpl_Property;
84
85
86 /*****************************************************************************
87 * IDxDiagContainer implementation structure
88 */
89 struct IDxDiagContainerImpl {
90 /* IUnknown fields */
91 const IDxDiagContainerVtbl *lpVtbl;
92 LONG ref;
93 /* IDxDiagContainer fields */
94 IDxDiagContainerImpl_Property* properties;
95 IDxDiagContainerImpl_SubContainer* subContainers;
96 DWORD nProperties;
97 DWORD nSubContainers;
98 };
99
100 /* IUnknown: */
101 extern HRESULT WINAPI IDxDiagContainerImpl_QueryInterface(PDXDIAGCONTAINER iface, REFIID riid, LPVOID *ppobj);
102 extern ULONG WINAPI IDxDiagContainerImpl_AddRef(PDXDIAGCONTAINER iface);
103
104 /** Internal */
105 extern HRESULT WINAPI IDxDiagContainerImpl_AddProp(PDXDIAGCONTAINER iface, LPCWSTR pwszPropName, VARIANT* pVarProp);
106 extern HRESULT WINAPI IDxDiagContainerImpl_AddChildContainer(PDXDIAGCONTAINER iface, LPCWSTR pszContName, PDXDIAGCONTAINER pSubCont);
107
108 /**
109 * factories
110 */
111 extern HRESULT DXDiag_CreateDXDiagProvider(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj);
112
113 /** internal factory */
114 extern HRESULT DXDiag_CreateDXDiagContainer(REFIID riid, LPVOID *ppobj);
115 extern HRESULT DXDiag_InitRootDXDiagContainer(IDxDiagContainer* pRootCont);
116
117 /**********************************************************************
118 * Dll lifetime tracking declaration for dxdiagn.dll
119 */
120 extern LONG DXDIAGN_refCount;
121 static inline void DXDIAGN_LockModule(void) { InterlockedIncrement( &DXDIAGN_refCount ); }
122 static inline void DXDIAGN_UnlockModule(void) { InterlockedDecrement( &DXDIAGN_refCount ); }
123
124 #endif