Commit 8550dc2f authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

Added stub for DllRegisterServer.

parent 7f4066a4
...@@ -3,6 +3,7 @@ init RPCRT4_LibMain ...@@ -3,6 +3,7 @@ init RPCRT4_LibMain
@ stub DceErrorInqTextA @ stub DceErrorInqTextA
@ stub DceErrorInqTextW @ stub DceErrorInqTextW
@ stdcall DllRegisterServer() RPCRT4_DllRegisterServer
@ stub MesBufferHandleReset @ stub MesBufferHandleReset
@ stub MesDecodeBufferHandleCreate @ stub MesDecodeBufferHandleCreate
......
...@@ -575,3 +575,13 @@ HRESULT WINAPI NdrDllGetClassObject( ...@@ -575,3 +575,13 @@ HRESULT WINAPI NdrDllGetClassObject(
return RPC_S_UNKNOWN_IF; return RPC_S_UNKNOWN_IF;
} }
/***********************************************************************
* DllRegisterServer (RPCRT4.@)
*/
HRESULT WINAPI RPCRT4_DllRegisterServer( void )
{
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