combase: Move CoGetCallState().
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b8f21f7607
commit
90755c8ea3
|
@ -607,3 +607,13 @@ HRESULT WINAPI CoGetObjectContext(REFIID riid, void **ppv)
|
||||||
|
|
||||||
return IObjContext_QueryInterface(context, riid, ppv);
|
return IObjContext_QueryInterface(context, riid, ppv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* CoGetCallState (combase.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI CoGetCallState(int arg1, ULONG *arg2)
|
||||||
|
{
|
||||||
|
FIXME("%d, %p.\n", arg1, arg2);
|
||||||
|
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
|
@ -97,7 +97,7 @@
|
||||||
@ stub CoGetApartmentID
|
@ stub CoGetApartmentID
|
||||||
@ stdcall CoGetApartmentType(ptr ptr) ole32.CoGetApartmentType
|
@ stdcall CoGetApartmentType(ptr ptr) ole32.CoGetApartmentType
|
||||||
@ stdcall CoGetCallContext(ptr ptr) ole32.CoGetCallContext
|
@ stdcall CoGetCallContext(ptr ptr) ole32.CoGetCallContext
|
||||||
@ stdcall CoGetCallState(long ptr) ole32.CoGetCallState
|
@ stdcall CoGetCallState(long ptr)
|
||||||
@ stdcall CoGetCallerTID(ptr) ole32.CoGetCallerTID
|
@ stdcall CoGetCallerTID(ptr) ole32.CoGetCallerTID
|
||||||
@ stub CoGetCancelObject
|
@ stub CoGetCancelObject
|
||||||
@ stdcall CoGetClassObject(ptr long ptr ptr ptr) ole32.CoGetClassObject
|
@ stdcall CoGetClassObject(ptr long ptr ptr ptr) ole32.CoGetClassObject
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
@ stdcall CoGetActivationState(int128 long ptr)
|
@ stdcall CoGetActivationState(int128 long ptr)
|
||||||
@ stdcall CoGetApartmentType(ptr ptr)
|
@ stdcall CoGetApartmentType(ptr ptr)
|
||||||
@ stdcall CoGetCallContext(ptr ptr)
|
@ stdcall CoGetCallContext(ptr ptr)
|
||||||
@ stdcall CoGetCallState(long ptr)
|
@ stdcall CoGetCallState(long ptr) combase.CoGetCallState
|
||||||
@ stdcall CoGetCallerTID(ptr)
|
@ stdcall CoGetCallerTID(ptr)
|
||||||
@ stdcall CoGetClassObject(ptr long ptr ptr ptr)
|
@ stdcall CoGetClassObject(ptr long ptr ptr ptr)
|
||||||
@ stdcall CoGetContextToken(ptr)
|
@ stdcall CoGetContextToken(ptr)
|
||||||
|
|
|
@ -167,15 +167,6 @@ HRESULT WINAPI CoGetActivationState(GUID guid, DWORD unknown, DWORD *unknown2)
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
|
||||||
* CoGetCallState (ole32.@)
|
|
||||||
*/
|
|
||||||
HRESULT WINAPI CoGetCallState(int unknown, PULONG unknown2)
|
|
||||||
{
|
|
||||||
FIXME("%d, %p\n", unknown, unknown2);
|
|
||||||
return E_NOTIMPL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* IsValidInterface [OLE32.@]
|
* IsValidInterface [OLE32.@]
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue