Commit 323af8db authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Stubs for DllRegisterServer/DllUnregisterServer.

parent 12085e9b
...@@ -120,3 +120,12 @@ UINT WINAPI OaBuildVersion() ...@@ -120,3 +120,12 @@ UINT WINAPI OaBuildVersion()
return 0x0; return 0x0;
} }
} }
HRESULT WINAPI OLEAUT32_DllRegisterServer() {
FIXME("stub!\n");
return S_OK;
}
HRESULT WINAPI OLEAUT32_DllUnregisterServer() {
FIXME("stub!\n");
return S_OK;
}
...@@ -250,8 +250,8 @@ type win32 ...@@ -250,8 +250,8 @@ type win32
295 stub LPSAFEARRAY_Size 295 stub LPSAFEARRAY_Size
296 stub LPSAFEARRAY_Marshal 296 stub LPSAFEARRAY_Marshal
297 stub LPSAFEARRAY_Unmarshal 297 stub LPSAFEARRAY_Unmarshal
320 stub DllRegisterServer 320 stdcall DllRegisterServer() OLEAUT32_DllRegisterServer
321 stub DllUnregisterServer 321 stdcall DllUnregisterServer() OLEAUT32_DllUnregisterServer
330 stub VarDateFromUdate 330 stub VarDateFromUdate
331 stub VarUdateFromDate 331 stub VarUdateFromDate
332 stub GetAltMonthNames 332 stub GetAltMonthNames
......
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