Commit 7521295f authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Added OLE32.DllRegisterServer stub.

parent 74eee411
...@@ -205,7 +205,7 @@ debug_channels (ole relay storage) ...@@ -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
......
...@@ -3,6 +3,7 @@ ...@@ -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 ...@@ -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;
}
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