Commit 90755c8e authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

combase: Move CoGetCallState().

parent b8f21f76
...@@ -607,3 +607,13 @@ HRESULT WINAPI CoGetObjectContext(REFIID riid, void **ppv) ...@@ -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 @@ ...@@ -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 @@ ...@@ -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) ...@@ -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.@]
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment