propsys: Add PSGetPropertyKeyFromName stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
882d70fe39
commit
cbd9354862
|
@ -83,7 +83,7 @@
|
||||||
@ stub PSGetPropertyDescriptionByName
|
@ stub PSGetPropertyDescriptionByName
|
||||||
@ stdcall PSGetPropertyDescriptionListFromString(wstr ptr ptr)
|
@ stdcall PSGetPropertyDescriptionListFromString(wstr ptr ptr)
|
||||||
@ stub PSGetPropertyFromPropertyStorage
|
@ stub PSGetPropertyFromPropertyStorage
|
||||||
@ stub PSGetPropertyKeyFromName
|
@ stdcall PSGetPropertyKeyFromName(wstr ptr)
|
||||||
@ stdcall PSGetPropertySystem(ptr ptr)
|
@ stdcall PSGetPropertySystem(ptr ptr)
|
||||||
@ stub PSGetPropertyValue
|
@ stub PSGetPropertyValue
|
||||||
@ stub PSLookupPropertyHandlerCLSID
|
@ stub PSLookupPropertyHandlerCLSID
|
||||||
|
|
|
@ -268,6 +268,12 @@ HRESULT WINAPI PSGetPropertyDescriptionListFromString(LPCWSTR proplist, REFIID r
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI PSGetPropertyKeyFromName(PCWSTR name, PROPERTYKEY *key)
|
||||||
|
{
|
||||||
|
FIXME("%s, %p\n", debugstr_w(name), key);
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
||||||
HRESULT WINAPI PSRefreshPropertySchema(void)
|
HRESULT WINAPI PSRefreshPropertySchema(void)
|
||||||
{
|
{
|
||||||
FIXME("\n");
|
FIXME("\n");
|
||||||
|
|
Loading…
Reference in New Issue