propsys: Stub for PSRegisterPropertySchema.

This commit is contained in:
Nikolay Sivov 2009-02-03 17:36:44 +03:00 committed by Alexandre Julliard
parent c17266de9e
commit 1ba1ff5f16
2 changed files with 8 additions and 1 deletions

View file

@ -89,7 +89,7 @@
@ stub PSLookupPropertyHandlerCLSID
@ stub PSPropertyKeyFromString
@ stub PSRefreshPropertySchema
@ stub PSRegisterPropertySchema
@ stdcall PSRegisterPropertySchema(wstr)
@ stub PSSetPropertyValue
@ stub PSStringFromPropertyKey
@ stub PSUnregisterPropertySchema

View file

@ -47,3 +47,10 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE;
}
HRESULT WINAPI PSRegisterPropertySchema(PCWSTR path)
{
FIXME("stub\n");
return E_NOTIMPL;
}