Commit cbd93548 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

propsys: Add PSGetPropertyKeyFromName stub.

parent 882d70fe
...@@ -83,7 +83,7 @@ ...@@ -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 ...@@ -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");
......
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