Commit e7d8fd12 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

propsys: Return success from PSRegisterPropertySchema.

parent d57ab268
......@@ -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;
}
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