dxdiagn: Make IDxDiagContainerImpl_QueryInterface() static.
This commit is contained in:
parent
d705465de8
commit
ef934e757f
|
@ -29,7 +29,7 @@
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(dxdiag);
|
WINE_DEFAULT_DEBUG_CHANNEL(dxdiag);
|
||||||
|
|
||||||
/* IDxDiagContainer IUnknown parts follow: */
|
/* IDxDiagContainer IUnknown parts follow: */
|
||||||
HRESULT WINAPI IDxDiagContainerImpl_QueryInterface(PDXDIAGCONTAINER iface, REFIID riid, LPVOID *ppobj)
|
static HRESULT WINAPI IDxDiagContainerImpl_QueryInterface(PDXDIAGCONTAINER iface, REFIID riid, LPVOID *ppobj)
|
||||||
{
|
{
|
||||||
IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
|
IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
|
||||||
|
|
||||||
|
|
|
@ -85,9 +85,6 @@ struct IDxDiagContainerImpl {
|
||||||
IDxDiagProvider *pProv;
|
IDxDiagProvider *pProv;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* IUnknown: */
|
|
||||||
extern HRESULT WINAPI IDxDiagContainerImpl_QueryInterface(PDXDIAGCONTAINER iface, REFIID riid, LPVOID *ppobj);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* factories
|
* factories
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue