Added stub for DllRegisterServer.
This commit is contained in:
parent
7f4066a421
commit
8550dc2fd6
|
@ -3,6 +3,7 @@ init RPCRT4_LibMain
|
|||
|
||||
@ stub DceErrorInqTextA
|
||||
@ stub DceErrorInqTextW
|
||||
@ stdcall DllRegisterServer() RPCRT4_DllRegisterServer
|
||||
|
||||
@ stub MesBufferHandleReset
|
||||
@ stub MesDecodeBufferHandleCreate
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue