[AMSTREAM] We don't need to define WIDL_C_INLINE_WRAPPERS here anymore.
[reactos.git] / 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 #include <wine/config.h>
25
26 #include <stdarg.h>
27
28 #define WIN32_NO_STATUS
29 #define _INC_WINDOWS
30 #define COM_NO_WINDOWS_H
31
32 #define COBJMACROS
33 #define NONAMELESSUNION
34 #define NONAMELESSSTRUCT
35
36 #include <windef.h>
37 #include <winbase.h>
38 #include <wingdi.h>
39
40 #include <wine/debug.h>
41 #include <wine/dxdiag.h>
42 #include <wine/list.h>
43 #include <wine/unicode.h>
44
45 #include "resource.h"
46
47 WINE_DEFAULT_DEBUG_CHANNEL(dxdiag);
48
49 /* DXDiag Interfaces: */
50 typedef struct IDxDiagProviderImpl IDxDiagProviderImpl;
51 typedef struct IDxDiagContainerImpl IDxDiagContainerImpl;
52 typedef struct IDxDiagContainerImpl_Container IDxDiagContainerImpl_Container;
53
54 /* ---------------- */
55 /* IDxDiagContainer */
56 /* ---------------- */
57
58 struct IDxDiagContainerImpl_Container {
59 struct list entry;
60 WCHAR *contName;
61
62 struct list subContainers;
63 DWORD nSubContainers;
64 struct list properties;
65 DWORD nProperties;
66 };
67
68 typedef struct IDxDiagContainerImpl_Property {
69 struct list entry;
70 WCHAR *propName;
71 VARIANT vProp;
72 } IDxDiagContainerImpl_Property;
73
74
75 /*****************************************************************************
76 * IDxDiagContainer implementation structure
77 */
78 struct IDxDiagContainerImpl {
79 IDxDiagContainer IDxDiagContainer_iface;
80 LONG ref;
81 IDxDiagContainerImpl_Container *cont;
82 IDxDiagProvider *pProv;
83 };
84
85 /**
86 * factories
87 */
88 extern HRESULT DXDiag_CreateDXDiagProvider(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj) DECLSPEC_HIDDEN;
89
90 /** internal factory */
91 extern HRESULT DXDiag_CreateDXDiagContainer(REFIID riid, IDxDiagContainerImpl_Container *cont, IDxDiagProvider *pProv, LPVOID *ppobj) DECLSPEC_HIDDEN;
92
93 /**********************************************************************
94 * Dll lifetime tracking declaration for dxdiagn.dll
95 */
96 extern LONG DXDIAGN_refCount DECLSPEC_HIDDEN;
97 static inline void DXDIAGN_LockModule(void) { InterlockedIncrement( &DXDIAGN_refCount ); }
98 static inline void DXDIAGN_UnlockModule(void) { InterlockedDecrement( &DXDIAGN_refCount ); }
99
100 extern HINSTANCE dxdiagn_instance DECLSPEC_HIDDEN;
101
102 #endif