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 WMCreateSyncReaderPriv
@ stub WMIsAvailableOffline @ stub WMIsAvailableOffline
@ stub WMValidateData @ stub WMValidateData
@ stub DllRegisterServer @ stdcall -private DllRegisterServer()
@ stub WMCreateBackupRestorer @ stub WMCreateBackupRestorer
@ stub WMCreateEditor @ stub WMCreateEditor
@ stub WMCreateIndexer @ stub WMCreateIndexer

View File

@ -45,6 +45,13 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE; return TRUE;
} }
HRESULT WINAPI DllRegisterServer(void)
{
FIXME("(): stub\n");
return S_OK;
}
HRESULT WINAPI WMCreateReader(IUnknown *reserved, DWORD rights, IWMSyncReader **reader) HRESULT WINAPI WMCreateReader(IUnknown *reserved, DWORD rights, IWMSyncReader **reader)
{ {
FIXME("(%p, %x, %p): stub\n", reserved, rights, reader); FIXME("(%p, %x, %p): stub\n", reserved, rights, reader);