propsys: Stub for PSUnregisterPropertySchema.

Needed for IE8 install.
oldstable
Aric Stewart 2009-03-19 09:46:45 -05:00 committed by Alexandre Julliard
parent d496a49084
commit 6979c4142f
2 changed files with 8 additions and 1 deletions

View File

@ -92,7 +92,7 @@
@ stdcall PSRegisterPropertySchema(wstr)
@ stub PSSetPropertyValue
@ stub PSStringFromPropertyKey
@ stub PSUnregisterPropertySchema
@ stdcall PSUnregisterPropertySchema(wstr)
@ stdcall PropVariantChangeType(ptr ptr long long)
@ stub PropVariantCompareEx
@ stub PropVariantGetBooleanElem

View File

@ -54,3 +54,10 @@ HRESULT WINAPI PSRegisterPropertySchema(PCWSTR path)
return E_NOTIMPL;
}
HRESULT WINAPI PSUnregisterPropertySchema(PCWSTR pszPath)
{
FIXME("stub\n");
return E_NOTIMPL;
}