ae73a0f63723fd701df3ed687069270cb7b8f677
[reactos.git] / reactos / dll / directx / wine / 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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
34 #include <wine/list.h>
35 #include <wine/dxdiag.h>
36
37 #include "resource.h"
38
39 /* DXDiag Interfaces: */
40 typedef struct IDxDiagProviderImpl IDxDiagProviderImpl;
41 typedef struct IDxDiagContainerImpl IDxDiagContainerImpl;
42 typedef struct IDxDiagContainerImpl_Container IDxDiagContainerImpl_Container;
43
44 /* ---------------- */
45 /* IDxDiagContainer */
46 /* ---------------- */
47
48 struct IDxDiagContainerImpl_Container {
49 struct list entry;
50 WCHAR *contName;
51
52 struct list subContainers;
53 DWORD nSubContainers;
54 struct list properties;
55 DWORD nProperties;
56 };
57
58 typedef struct IDxDiagContainerImpl_Property {
59 struct list entry;
60 WCHAR *propName;
61 VARIANT vProp;
62 } IDxDiagContainerImpl_Property;
63
64
65 /*****************************************************************************
66 * IDxDiagContainer implementation structure
67 */
68 struct IDxDiagContainerImpl {
69 IDxDiagContainer IDxDiagContainer_iface;
70 LONG ref;
71 IDxDiagContainerImpl_Container *cont;
72 IDxDiagProvider *pProv;
73 };
74
75 /**
76 * factories
77 */
78 extern HRESULT DXDiag_CreateDXDiagProvider(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj) DECLSPEC_HIDDEN;
79
80 /** internal factory */
81 extern HRESULT DXDiag_CreateDXDiagContainer(REFIID riid, IDxDiagContainerImpl_Container *cont, IDxDiagProvider *pProv, LPVOID *ppobj) DECLSPEC_HIDDEN;
82
83 /**********************************************************************
84 * Dll lifetime tracking declaration for dxdiagn.dll
85 */
86 extern LONG DXDIAGN_refCount DECLSPEC_HIDDEN;
87 static inline void DXDIAGN_LockModule(void) { InterlockedIncrement( &DXDIAGN_refCount ); }
88 static inline void DXDIAGN_UnlockModule(void) { InterlockedDecrement( &DXDIAGN_refCount ); }
89
90 extern HINSTANCE dxdiagn_instance DECLSPEC_HIDDEN;
91
92 #endif