propsys: Return success from PSRegisterPropertySchema.

This commit is contained in:
Hans Leidekker 2010-06-14 14:20:49 +02:00 committed by Alexandre Julliard
parent d57ab26840
commit e7d8fd126b
1 changed files with 4 additions and 4 deletions

View File

@ -50,14 +50,14 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
HRESULT WINAPI PSRegisterPropertySchema(PCWSTR path)
{
FIXME("stub\n");
FIXME("%s\n", debugstr_w(path));
return E_NOTIMPL;
return S_OK;
}
HRESULT WINAPI PSUnregisterPropertySchema(PCWSTR pszPath)
HRESULT WINAPI PSUnregisterPropertySchema(PCWSTR path)
{
FIXME("stub\n");
FIXME("%s\n", debugstr_w(path));
return E_NOTIMPL;
}