combase: Move CoGetDefaultContext().
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
532df76a0e
commit
9d0eeff2ca
|
@ -803,6 +803,16 @@ HRESULT WINAPI CoGetObjectContext(REFIID riid, void **ppv)
|
|||
return IObjContext_QueryInterface(context, riid, ppv);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoGetDefaultContext (combase.@)
|
||||
*/
|
||||
HRESULT WINAPI CoGetDefaultContext(APTTYPE type, REFIID riid, void **obj)
|
||||
{
|
||||
FIXME("%d, %s, %p stub\n", type, debugstr_guid(riid), obj);
|
||||
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoGetCallState (combase.@)
|
||||
*/
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
@ stdcall CoGetContextToken(ptr) ole32.CoGetContextToken
|
||||
@ stdcall CoGetCurrentLogicalThreadId(ptr) ole32.CoGetCurrentLogicalThreadId
|
||||
@ stdcall CoGetCurrentProcess() ole32.CoGetCurrentProcess
|
||||
@ stdcall CoGetDefaultContext(long ptr ptr) ole32.CoGetDefaultContext
|
||||
@ stdcall CoGetDefaultContext(long ptr ptr)
|
||||
@ stub CoGetErrorInfo
|
||||
@ stdcall CoGetInstanceFromFile(ptr ptr ptr long long wstr long ptr)
|
||||
@ stdcall CoGetInstanceFromIStorage(ptr ptr ptr long ptr long ptr)
|
||||
|
|
|
@ -4262,15 +4262,6 @@ HRESULT WINAPI CoGetContextToken( ULONG_PTR *token )
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoGetDefaultContext [OLE32.@]
|
||||
*/
|
||||
HRESULT WINAPI CoGetDefaultContext(APTTYPE type, REFIID riid, LPVOID *ppv)
|
||||
{
|
||||
FIXME("%d %s %p stub\n", type, debugstr_guid(riid), ppv);
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
HRESULT Handler_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
||||
{
|
||||
static const WCHAR wszInprocHandler32[] = {'I','n','p','r','o','c','H','a','n','d','l','e','r','3','2',0};
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
@ stdcall CoGetContextToken(ptr)
|
||||
@ stdcall CoGetCurrentLogicalThreadId(ptr)
|
||||
@ stdcall CoGetCurrentProcess()
|
||||
@ stdcall CoGetDefaultContext(long ptr ptr)
|
||||
@ stdcall CoGetDefaultContext(long ptr ptr) combase.CoGetDefaultContext
|
||||
@ stdcall CoGetInstanceFromFile(ptr ptr ptr long long wstr long ptr) combase.CoGetInstanceFromFile
|
||||
@ stdcall CoGetInstanceFromIStorage(ptr ptr ptr long ptr long ptr) combase.CoGetInstanceFromIStorage
|
||||
@ stdcall CoGetInterfaceAndReleaseStream(ptr ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue