Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b3f32d96
Commit
b3f32d96
authored
Apr 15, 2004
by
Raphael Junqueira
Committed by
Alexandre Julliard
Apr 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some bugs.
parent
4f568633
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
24 deletions
+28
-24
dxdiag.h
include/dxdiag.h
+28
-24
No files found.
include/dxdiag.h
View file @
b3f32d96
...
...
@@ -19,7 +19,7 @@
#ifndef __WINE_DXDIAG_H
#define __WINE_DXDIAG_H
#include <o
bjbase
.h>
#include <o
le2
.h>
#ifdef __cplusplus
extern
"C"
{
...
...
@@ -67,13 +67,13 @@ typedef struct IDxDiagContainer IDxDiagContainer, *LPDXDIAGCONTAINER, *PDX
/*****************************************************************************
* IDxDiagProvider interface
*/
#define I
COM_I
NTERFACE IDxDiagProvider
#define INTERFACE IDxDiagProvider
#define IDxDiagProvider_METHODS \
IUnknown_METHODS \
STDMETHOD(Initialize)(THIS_ DXDIAG_INIT_PARAMS* pParams) \
STDMETHOD(GetRootContainer)(THIS_ IDxDiagContainer** ppInstance)
STDMETHOD(Initialize)(THIS_ DXDIAG_INIT_PARAMS* pParams)
PURE;
\
STDMETHOD(GetRootContainer)(THIS_ IDxDiagContainer** ppInstance)
PURE;
ICOM_DEFINE
(
IDxDiagProvider
,
IUnknown
)
#undef I
COM_I
NTERFACE
#undef INTERFACE
#ifdef COBJMACROS
/*** IUnknown methods ***/
...
...
@@ -81,37 +81,41 @@ ICOM_DEFINE(IDxDiagProvider,IUnknown)
#define IDxDiagProvider_AddRef(p) (p)->lpVtbl->AddRef(p)
#define IDxDiagProvider_Release(p) (p)->lpVtbl->Release(p)
/*** IDxDiagProvider methods ***/
#define IDxDiagProvider_Initialize(p,a,b)
(p)->lpVtbl->Initialize(p,a,b)
#define IDxDiagProvider_GetRootContainer(p,a)
(p)->lpVtbl->GetRootContainer(p,a)
#define IDxDiagProvider_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b)
#define IDxDiagProvider_GetRootContainer(p,a) (p)->lpVtbl->GetRootContainer(p,a)
#endif
/*****************************************************************************
* IDxDiagContainer interface
*/
#define ICOM_INTERFACE IDxDiagContainer
#ifdef __WINESRC__
#undef GetProp
#endif
#define INTERFACE IDxDiagContainer
#define IDxDiagContainer_METHODS \
IUnknown_METHODS \
STDMETHOD(GetNumberOfChildContainers)(THIS_ DWORD* pdwCount) \
STDMETHOD(EnumChildContainerNames)(THIS_ DWORD dwIndex, LPWSTR pwszContainer, DWORD cchContainer) \
STDMETHOD(GetChildContainer)(THIS_ LPCWSTR pwszContainer, IDxDiagContainer** ppInstance) \
STDMETHOD(GetNumberOfProps)(THIS_ DWORD* pdwCount) \
STDMETHOD(EnumPropNames)(THIS_ DWORD dwIndex, LPWSTR pwszPropName, DWORD cchPropName) \
STDMETHOD(GetProp)(THIS_ LPCWSTR pwszPropName, VARIANT* pvarProp)
STDMETHOD(GetNumberOfChildContainers)(THIS_ DWORD* pdwCount)
PURE;
\
STDMETHOD(EnumChildContainerNames)(THIS_ DWORD dwIndex, LPWSTR pwszContainer, DWORD cchContainer)
PURE;
\
STDMETHOD(GetChildContainer)(THIS_ LPCWSTR pwszContainer, IDxDiagContainer** ppInstance)
PURE;
\
STDMETHOD(GetNumberOfProps)(THIS_ DWORD* pdwCount)
PURE;
\
STDMETHOD(EnumPropNames)(THIS_ DWORD dwIndex, LPWSTR pwszPropName, DWORD cchPropName)
PURE;
\
STDMETHOD(GetProp)(THIS_ LPCWSTR pwszPropName, VARIANT* pvarProp)
PURE;
ICOM_DEFINE
(
IDxDiagContainer
,
IUnknown
)
#undef I
COM_I
NTERFACE
#undef INTERFACE
#ifdef COBJMACROS
/*** IUnknown methods ***/
#define IDxDiagContainer_QueryInterface(p,a,b)
(p)->lpVtbl->QueryInterface(p,a,b)
#define IDxDiagContainer_AddRef(p)
(p)->lpVtbl->AddRef(p)
#define IDxDiagContainer_Release(p)
(p)->lpVtbl->Release(p)
#define IDxDiagContainer_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
#define IDxDiagContainer_AddRef(p) (p)->lpVtbl->AddRef(p)
#define IDxDiagContainer_Release(p) (p)->lpVtbl->Release(p)
/*** IDxDiagContainer methods ***/
#define IDxDiagContainer_GetNumberOfChildContainers(p,a)
(p)->lpVtbl->GetNumberOfChildContainers(p,a)
#define IDxDiagContainer_EnumChildContainerNames(p,a,b,c)
(p)->lpVtbl->EnumChildContainerNames(p,a,b,c)
#define IDxDiagContainer_GetChildContainer(p,a,b)
(p)->lpVtbl->GetChildContainer(p,a,b)
#define IDxDiagContainer_GetNumberOfProps(p,a)
(p)->lpVtbl->GetNumberOfProps(p,a)
#define IDxDiagContainer_EnumProps(p,a,b)
(p)->lpVtbl->EnumProps(p,a,b,c)
#define IDxDiagContainer_GetProp(p,a,b)
(p)->lpVtbl->GetProp(p,a,b)
#define IDxDiagContainer_GetNumberOfChildContainers(p,a) (p)->lpVtbl->GetNumberOfChildContainers(p,a)
#define IDxDiagContainer_EnumChildContainerNames(p,a,b,c) (p)->lpVtbl->EnumChildContainerNames(p,a,b,c)
#define IDxDiagContainer_GetChildContainer(p,a,b) (p)->lpVtbl->GetChildContainer(p,a,b)
#define IDxDiagContainer_GetNumberOfProps(p,a) (p)->lpVtbl->GetNumberOfProps(p,a)
#define IDxDiagContainer_EnumProps(p,a,b) (p)->lpVtbl->EnumProps(p,a,b,c)
#define IDxDiagContainer_GetProp(p,a,b) (p)->lpVtbl->GetProp(p,a,b)
#endif
#ifdef __cplusplus
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment