Commit 37419c4a authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

wmvcore: Add stub for DllRegisterServer.

parent da87b102
......@@ -4,7 +4,7 @@
@ stub WMCreateSyncReaderPriv
@ stub WMIsAvailableOffline
@ stub WMValidateData
@ stub DllRegisterServer
@ stdcall -private DllRegisterServer()
@ stub WMCreateBackupRestorer
@ stub WMCreateEditor
@ stub WMCreateIndexer
......
......@@ -45,6 +45,13 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE;
}
HRESULT WINAPI DllRegisterServer(void)
{
FIXME("(): stub\n");
return S_OK;
}
HRESULT WINAPI WMCreateReader(IUnknown *reserved, DWORD rights, IWMSyncReader **reader)
{
FIXME("(%p, %x, %p): stub\n", reserved, rights, reader);
......
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