Commit 3a230263 authored by Eric Kohl's avatar Eric Kohl Committed by Alexandre Julliard

Added stub for CreateBindCtx() and added missing CoGetClassObject()

to *.spec file. Makes Internet Explorer 4.01 happy ;-)
parent c4b54f8f
...@@ -125,3 +125,14 @@ HRESULT WINAPI RevokeDragDrop32( ...@@ -125,3 +125,14 @@ HRESULT WINAPI RevokeDragDrop32(
FIXME(ole,"(0x%04x),stub!\n",hwnd); FIXME(ole,"(0x%04x),stub!\n",hwnd);
return S_OK; return S_OK;
} }
/***********************************************************************
* CreateBindCtx32 [OLE32.52]
*/
HRESULT WINAPI CreateBindCtx32 (DWORD reserved, LPVOID *ppbc)
{
FIXME(ole,"(0x%08x %p): stub!\n", reserved, ppbc);
*ppbc = 0;
// return S_OK;
return E_OUTOFMEMORY;
}
...@@ -16,7 +16,7 @@ type win32 ...@@ -16,7 +16,7 @@ type win32
13 stdcall CoFreeLibrary(long) CoFreeLibrary 13 stdcall CoFreeLibrary(long) CoFreeLibrary
14 stdcall CoFreeUnusedLibraries() CoFreeUnusedLibraries 14 stdcall CoFreeUnusedLibraries() CoFreeUnusedLibraries
15 stub CoGetCallerTID 15 stub CoGetCallerTID
16 stub CoGetClassObject 16 stdcall CoGetClassObject(ptr long ptr ptr ptr) CoGetClassObject
17 stub CoGetCurrentLogicalThreadId 17 stub CoGetCurrentLogicalThreadId
18 stdcall CoGetCurrentProcess() CoGetCurrentProcess 18 stdcall CoGetCurrentProcess() CoGetCurrentProcess
19 stub CoGetInterfaceAndReleaseStream 19 stub CoGetInterfaceAndReleaseStream
...@@ -52,7 +52,7 @@ type win32 ...@@ -52,7 +52,7 @@ type win32
49 stub CoUnmarshalHresult 49 stub CoUnmarshalHresult
50 stub CoUnmarshalInterface 50 stub CoUnmarshalInterface
51 stub CreateAntiMoniker 51 stub CreateAntiMoniker
52 stub CreateBindCtx 52 stdcall CreateBindCtx(long ptr) CreateBindCtx32
53 stub CreateDataAdviseHolder 53 stub CreateDataAdviseHolder
54 stub CreateDataCache 54 stub CreateDataCache
55 stdcall CreateFileMoniker(ptr ptr) CreateFileMoniker32 55 stdcall CreateFileMoniker(ptr ptr) CreateFileMoniker32
......
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