Commit e8ac5892 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

propsys: Add stub for PSGetPropertyDescriptionListFromString.

parent 901fff3c
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
@ stub PSGetNamedPropertyFromPropertyStorage @ stub PSGetNamedPropertyFromPropertyStorage
@ stdcall PSGetPropertyDescription(ptr ptr ptr) @ stdcall PSGetPropertyDescription(ptr ptr ptr)
@ stub PSGetPropertyDescriptionByName @ stub PSGetPropertyDescriptionByName
@ stub PSGetPropertyDescriptionListFromString @ stdcall PSGetPropertyDescriptionListFromString(ptr ptr ptr)
@ stub PSGetPropertyFromPropertyStorage @ stub PSGetPropertyFromPropertyStorage
@ stub PSGetPropertyKeyFromName @ stub PSGetPropertyKeyFromName
@ stub PSGetPropertySystem @ stub PSGetPropertySystem
......
...@@ -159,6 +159,12 @@ HRESULT WINAPI PSGetPropertyDescription(REFPROPERTYKEY propkey, REFIID riid, voi ...@@ -159,6 +159,12 @@ HRESULT WINAPI PSGetPropertyDescription(REFPROPERTYKEY propkey, REFIID riid, voi
return E_NOTIMPL; return E_NOTIMPL;
} }
HRESULT WINAPI PSGetPropertyDescriptionListFromString(LPCWSTR proplist, REFIID riid, void **ppv)
{
FIXME("%s, %p, %p\n", debugstr_w(proplist), riid, ppv);
return E_NOTIMPL;
}
HRESULT WINAPI PSRefreshPropertySchema(void) HRESULT WINAPI PSRefreshPropertySchema(void)
{ {
FIXME("\n"); FIXME("\n");
......
...@@ -802,6 +802,7 @@ cpp_quote("#define PKEYSTR_MAX (GUIDSTRING_MAX + 1 + PKEY_PIDSTR_MAX)") ...@@ -802,6 +802,7 @@ cpp_quote("#define PKEYSTR_MAX (GUIDSTRING_MAX + 1 + PKEY_PIDSTR_MAX)")
cpp_quote("HRESULT WINAPI PSStringFromPropertyKey(REFPROPERTYKEY,LPWSTR,UINT);") cpp_quote("HRESULT WINAPI PSStringFromPropertyKey(REFPROPERTYKEY,LPWSTR,UINT);")
cpp_quote("HRESULT WINAPI PSPropertyKeyFromString(LPCWSTR,PROPERTYKEY*);") cpp_quote("HRESULT WINAPI PSPropertyKeyFromString(LPCWSTR,PROPERTYKEY*);")
cpp_quote("HRESULT WINAPI PSGetPropertyDescription(REFPROPERTYKEY,REFIID,void **);") cpp_quote("HRESULT WINAPI PSGetPropertyDescription(REFPROPERTYKEY,REFIID,void **);")
cpp_quote("HRESULT WINAPI PSGetPropertyDescriptionListFromString(LPCWSTR,REFIID,void **);")
cpp_quote("HRESULT WINAPI PSRefreshPropertySchema(void);") cpp_quote("HRESULT WINAPI PSRefreshPropertySchema(void);")
/* TODO: Add remainder of the C api here */ /* TODO: Add remainder of the C api here */
......
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