ChangeLog ------------- added stub for DllRegisterServer to rpcrt4.dll
diff -ruw wine-20020509/dlls/rpcrt4/rpcrt4.spec wine/dlls/rpcrt4/rpcrt4.spec --- wine-20020509/dlls/rpcrt4/rpcrt4.spec Fri May 10 17:57:57 2002 +++ wine/dlls/rpcrt4/rpcrt4.spec Fri May 10 18:00:04 2002 @@ -6,6 +6,7 @@ @ stub DceErrorInqTextA @ stub DceErrorInqTextW +@ stdcall DllRegisterServer() RPCRT4_DllRegisterServer @ stub MesBufferHandleReset @ stub MesDecodeBufferHandleCreate diff -ruw wine-20020509/dlls/rpcrt4/rpcrt4_main.c wine/dlls/rpcrt4/rpcrt4_main.c --- wine-20020509/dlls/rpcrt4/rpcrt4_main.c Mon Mar 11 19:38:14 2002 +++ wine/dlls/rpcrt4/rpcrt4_main.c Fri May 10 18:00:04 2002 @@ -573,3 +573,13 @@ return RPC_S_UNKNOWN_IF; } +/*********************************************************************** + * DllRegisterServer (RPCRT4.@) + */ + +HRESULT WINAPI RPCRT4_DllRegisterServer( void ) +{ + FIXME( "(): stub\n" ); + return S_OK; +} +