1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-03 08:19:41 +00:00

sccbase: Stubs for DllRegisterServer() and DllUnregisterServer().

This commit is contained in:
Paul Chitescu 2009-11-04 22:57:51 +02:00 committed by Alexandre Julliard
parent 91bf659dd6
commit b24fb8bfcf
2 changed files with 20 additions and 2 deletions

View File

@ -44,3 +44,21 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
}
return TRUE;
}
/*****************************************************
* DllRegisterServer (SCCBASE.@)
*/
HRESULT WINAPI DllRegisterServer(void)
{
FIXME("Not implemented.\n");
return E_UNEXPECTED;
}
/*****************************************************
* DllUnregisterServer (SCCBASE.@)
*/
HRESULT WINAPI DllUnregisterServer(void)
{
FIXME("Not implemented.\n");
return E_UNEXPECTED;
}

View File

@ -22,5 +22,5 @@
@ stub CPSetProvParam
@ stub CPSignHash
@ stub CPVerifySignature
@ stub DllRegisterServer
@ stub DllUnregisterServer
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()