/* * DXDiag private include file * * Copyright 2004 Raphael Junqueira * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #ifndef __WINE_DXDIAG_PRIVATE_H #define __WINE_DXDIAG_PRIVATE_H #include #include "windef.h" #include "winbase.h" #include "wingdi.h" #include "wine/list.h" #include "dxdiag.h" /* DXDiag Interfaces: */ typedef struct IDxDiagProviderImpl IDxDiagProviderImpl; typedef struct IDxDiagContainerImpl IDxDiagContainerImpl; typedef struct IDxDiagContainerImpl_Container { struct list entry; WCHAR *contName; struct list subContainers; DWORD nSubContainers; struct list properties; DWORD nProperties; } IDxDiagContainerImpl_Container; /* ---------------- */ /* IDxDiagProvider */ /* ---------------- */ /***************************************************************************** * IDxDiagProvider implementation structure */ struct IDxDiagProviderImpl { /* IUnknown fields */ const IDxDiagProviderVtbl *lpVtbl; LONG ref; /* IDxDiagProvider fields */ BOOL init; DXDIAG_INIT_PARAMS params; IDxDiagContainerImpl_Container *info_root; }; /* ---------------- */ /* IDxDiagContainer */ /* ---------------- */ typedef struct IDxDiagContainerImpl_SubContainer { struct list entry; WCHAR *contName; IDxDiagContainer *pCont; } IDxDiagContainerImpl_SubContainer; typedef struct IDxDiagContainerImpl_Property { struct list entry; WCHAR *propName; VARIANT vProp; } IDxDiagContainerImpl_Property; /***************************************************************************** * IDxDiagContainer implementation structure */ struct IDxDiagContainerImpl { /* IUnknown fields */ const IDxDiagContainerVtbl *lpVtbl; LONG ref; /* IDxDiagContainer fields */ struct list properties; struct list subContainers; DWORD nProperties; DWORD nSubContainers; IDxDiagProvider *pProv; }; /* IUnknown: */ extern HRESULT WINAPI IDxDiagContainerImpl_QueryInterface(PDXDIAGCONTAINER iface, REFIID riid, LPVOID *ppobj); /** Internal */ extern HRESULT WINAPI IDxDiagContainerImpl_AddProp(PDXDIAGCONTAINER iface, LPCWSTR pwszPropName, VARIANT* pVarProp); extern HRESULT WINAPI IDxDiagContainerImpl_AddChildContainer(PDXDIAGCONTAINER iface, LPCWSTR pszContName, PDXDIAGCONTAINER pSubCont); /** * factories */ extern HRESULT DXDiag_CreateDXDiagProvider(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj); /** internal factory */ extern HRESULT DXDiag_CreateDXDiagContainer(REFIID riid, IDxDiagProvider *, LPVOID *ppobj); /********************************************************************** * Dll lifetime tracking declaration for dxdiagn.dll */ extern LONG DXDIAGN_refCount; static inline void DXDIAGN_LockModule(void) { InterlockedIncrement( &DXDIAGN_refCount ); } static inline void DXDIAGN_UnlockModule(void) { InterlockedDecrement( &DXDIAGN_refCount ); } #endif