Added stub for DllRegisterServer.

oldstable
Stefan Leichter 2002-05-19 22:22:52 +00:00 committed by Alexandre Julliard
parent 7f4066a421
commit 8550dc2fd6
2 changed files with 11 additions and 0 deletions

View File

@ -3,6 +3,7 @@ init RPCRT4_LibMain
@ stub DceErrorInqTextA
@ stub DceErrorInqTextW
@ stdcall DllRegisterServer() RPCRT4_DllRegisterServer
@ stub MesBufferHandleReset
@ stub MesDecodeBufferHandleCreate

View File

@ -575,3 +575,13 @@ HRESULT WINAPI NdrDllGetClassObject(
return RPC_S_UNKNOWN_IF;
}
/***********************************************************************
* DllRegisterServer (RPCRT4.@)
*/
HRESULT WINAPI RPCRT4_DllRegisterServer( void )
{
FIXME( "(): stub\n" );
return S_OK;
}