Added OLE32.DllRegisterServer stub.

This commit is contained in:
Marcus Meissner 2000-11-25 01:22:42 +00:00 committed by Alexandre Julliard
parent 74eee411d5
commit 7521295fba
2 changed files with 8 additions and 1 deletions

View File

@ -205,7 +205,7 @@ debug_channels (ole relay storage)
191 stub CoSwitchCallContext 191 stub CoSwitchCallContext
192 stdcall CreateErrorInfo(ptr) CreateErrorInfo 192 stdcall CreateErrorInfo(ptr) CreateErrorInfo
193 stub CreateObjrefMoniker 193 stub CreateObjrefMoniker
194 stub DllRegisterServer 194 stdcall DllRegisterServer() OLE32_DllRegisterServer
195 stdcall FreePropVariantArray(long ptr) FreePropVariantArray 195 stdcall FreePropVariantArray(long ptr) FreePropVariantArray
196 stdcall GetErrorInfo(long ptr) GetErrorInfo 196 stdcall GetErrorInfo(long ptr) GetErrorInfo
197 stub HACCEL_UserFree 197 stub HACCEL_UserFree

View File

@ -3,6 +3,7 @@
* *
*/ */
#include "windef.h" #include "windef.h"
#include "winerror.h"
#include "ole32_main.h" #include "ole32_main.h"
#include "debugtools.h" #include "debugtools.h"
@ -35,3 +36,9 @@ BOOL WINAPI OLE32_DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImp
} }
return TRUE; return TRUE;
} }
HRESULT WINAPI OLE32_DllRegisterServer() {
/* FIXME: what Interfaces should we register ... */
FIXME("(), stub!\n");
return S_OK;
}