mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
CoSuspendClassObjects stub implementation.
This commit is contained in:
parent
d46a95cd11
commit
37dcaf6be6
2 changed files with 10 additions and 1 deletions
|
@ -2197,3 +2197,12 @@ HRESULT WINAPI CoInitializeSecurity(PSECURITY_DESCRIPTOR pSecDesc, LONG cAuthSvc
|
|||
dwCapabilities, pReserved3);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoSuspendClassObjects [OLE32.@]
|
||||
*/
|
||||
HRESULT WINAPI CoSuspendClassObjects(void)
|
||||
{
|
||||
FIXME("\n");
|
||||
return S_OK;
|
||||
}
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
@ stub CoSetProxyBlanket #@ stdcall (ptr long long wstr long long ptr long) return 0,ERR_NOTIMPLEMENTED
|
||||
@ stdcall CoSetState(ptr)
|
||||
@ stub CoSwitchCallContext
|
||||
@ stub CoSuspendClassObjects #@ stdcall () return 0,ERR_NOTIMPLEMENTED
|
||||
@ stdcall CoSuspendClassObjects()
|
||||
@ stdcall CoTaskMemAlloc(long)
|
||||
@ stdcall CoTaskMemFree(ptr)
|
||||
@ stdcall CoTaskMemRealloc(ptr long)
|
||||
|
|
Loading…
Reference in a new issue