wmvcore: Add stub for DllRegisterServer.

This commit is contained in:
Christian Costa 2012-11-16 15:13:14 +01:00 committed by Alexandre Julliard
parent da87b102e0
commit 37419c4af2
2 changed files with 8 additions and 1 deletions

View file

@ -4,7 +4,7 @@
@ stub WMCreateSyncReaderPriv
@ stub WMIsAvailableOffline
@ stub WMValidateData
@ stub DllRegisterServer
@ stdcall -private DllRegisterServer()
@ stub WMCreateBackupRestorer
@ stub WMCreateEditor
@ stub WMCreateIndexer

View file

@ -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);