Added OLE32.DllRegisterServer stub.
This commit is contained in:
parent
74eee411d5
commit
7521295fba
|
@ -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 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue