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
|
||||
@ stdcall PSGetPropertyDescriptionListFromString(wstr ptr ptr)
|
||||
@ stub PSGetPropertyFromPropertyStorage
|
||||
@ stub PSGetPropertyKeyFromName
|
||||
@ stdcall PSGetPropertyKeyFromName(wstr ptr)
|
||||
@ stdcall PSGetPropertySystem(ptr ptr)
|
||||
@ stub PSGetPropertyValue
|
||||
@ stub PSLookupPropertyHandlerCLSID
|
||||
|
|
|
@ -268,6 +268,12 @@ HRESULT WINAPI PSGetPropertyDescriptionListFromString(LPCWSTR proplist, REFIID r
|
|||
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)
|
||||
{
|
||||
FIXME("\n");
|
||||
|
|
Loading…
Reference in New Issue