ole32: Add stub implementations of CoGetActivationState and CoGetCallState.
This commit is contained in:
parent
824b81ea11
commit
4062db444c
|
@ -88,11 +88,11 @@
|
|||
@ stub CoEnableCallCancellation
|
||||
@ stdcall CoFreeUnusedLibraries() ole32.CoFreeUnusedLibraries
|
||||
@ stdcall CoFreeUnusedLibrariesEx(long long) ole32.CoFreeUnusedLibrariesEx
|
||||
@ stub CoGetActivationState
|
||||
@ stdcall CoGetActivationState(int128 long ptr) ole32.CoGetActivationState
|
||||
@ stub CoGetApartmentID
|
||||
@ stub CoGetApartmentType
|
||||
@ stdcall CoGetCallContext(ptr ptr) ole32.CoGetCallContext
|
||||
@ stub CoGetCallState
|
||||
@ stdcall CoGetCallState(long ptr) ole32.CoGetCallState
|
||||
@ stdcall CoGetCallerTID(ptr) ole32.CoGetCallerTID
|
||||
@ stub CoGetCancelObject
|
||||
@ stdcall CoGetClassObject(ptr long ptr ptr ptr) ole32.CoGetClassObject
|
||||
|
|
|
@ -22,7 +22,9 @@
|
|||
@ stdcall CoFreeLibrary(long)
|
||||
@ stdcall CoFreeUnusedLibraries()
|
||||
@ stdcall CoFreeUnusedLibrariesEx(long long)
|
||||
@ stdcall CoGetActivationState(int128 long ptr)
|
||||
@ stdcall CoGetCallContext(ptr ptr)
|
||||
@ stdcall CoGetCallState(long ptr)
|
||||
@ stdcall CoGetCallerTID(ptr)
|
||||
@ stdcall CoGetClassObject(ptr long ptr ptr ptr)
|
||||
@ stdcall CoGetContextToken(ptr)
|
||||
|
|
|
@ -160,3 +160,21 @@ HGLOBAL WINAPI OleMetafilePictFromIconAndLabel(HICON hIcon, LPOLESTR lpszLabel,
|
|||
|
||||
return hmem;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoGetActivationState (ole32.@)
|
||||
*/
|
||||
HRESULT WINAPI CoGetActivationState(GUID guid, DWORD unknown, DWORD *unknown2)
|
||||
{
|
||||
FIXME("%s, %x, %p\n", debugstr_guid(&guid), unknown, unknown2);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoGetCallState (ole32.@)
|
||||
*/
|
||||
HRESULT WINAPI CoGetCallState(int unknown, PULONG unknown2)
|
||||
{
|
||||
FIXME("%d, %p\n", unknown, unknown2);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue