Add stub for CoAllowSetForegroundWindow.
This commit is contained in:
parent
390d502887
commit
c8aedf9726
|
@ -2491,6 +2491,16 @@ BOOL WINAPI CoIsHandlerConnected(IUnknown *pUnk)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* CoAllowSetForegroundWindow [OLE32.@]
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI CoAllowSetForegroundWindow(IUnknown *pUnk, void *pvReserved)
|
||||||
|
{
|
||||||
|
FIXME("(%p, %p): stub\n", pUnk, pvReserved);
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* CoQueryProxyBlanket [OLE32.@]
|
* CoQueryProxyBlanket [OLE32.@]
|
||||||
*
|
*
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
@ stdcall CLSIDFromProgID(wstr ptr)
|
@ stdcall CLSIDFromProgID(wstr ptr)
|
||||||
@ stdcall CLSIDFromString(wstr ptr)
|
@ stdcall CLSIDFromString(wstr ptr)
|
||||||
@ stdcall CoAddRefServerProcess()
|
@ stdcall CoAddRefServerProcess()
|
||||||
|
@ stdcall CoAllowSetForegroundWindow(ptr ptr)
|
||||||
@ stdcall CoBuildVersion()
|
@ stdcall CoBuildVersion()
|
||||||
@ stdcall CoCopyProxy(ptr ptr)
|
@ stdcall CoCopyProxy(ptr ptr)
|
||||||
@ stdcall CoCreateFreeThreadedMarshaler(ptr ptr)
|
@ stdcall CoCreateFreeThreadedMarshaler(ptr ptr)
|
||||||
|
|
Loading…
Reference in New Issue