Commit 47de869f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

propsys: Forward corresponding methods to exports.

parent d897b325
......@@ -166,8 +166,7 @@ static ULONG WINAPI propsys_Release(IPropertySystem *iface)
static HRESULT WINAPI propsys_GetPropertyDescription(IPropertySystem *iface,
REFPROPERTYKEY propkey, REFIID riid, void **ppv)
{
FIXME("%p %s %p: stub\n", propkey, debugstr_guid(riid), ppv);
return E_NOTIMPL;
return PSGetPropertyDescription(propkey, riid, ppv);
}
static HRESULT WINAPI propsys_GetPropertyDescriptionByName(IPropertySystem *iface,
......@@ -180,8 +179,7 @@ static HRESULT WINAPI propsys_GetPropertyDescriptionByName(IPropertySystem *ifac
static HRESULT WINAPI propsys_GetPropertyDescriptionListFromString(IPropertySystem *iface,
LPCWSTR proplist, REFIID riid, void **ppv)
{
FIXME("%s %s %p: stub\n", debugstr_w(proplist), debugstr_guid(riid), ppv);
return E_NOTIMPL;
return PSGetPropertyDescriptionListFromString(proplist, riid, ppv);
}
static HRESULT WINAPI propsys_EnumeratePropertyDescriptions(IPropertySystem *iface,
......@@ -209,20 +207,17 @@ static HRESULT WINAPI propsys_FormatForDisplayAlloc(IPropertySystem *iface,
static HRESULT WINAPI propsys_RegisterPropertySchema(IPropertySystem *iface, LPCWSTR path)
{
FIXME("%s: stub\n", debugstr_w(path));
return E_NOTIMPL;
return PSRegisterPropertySchema(path);
}
static HRESULT WINAPI propsys_UnregisterPropertySchema(IPropertySystem *iface, LPCWSTR path)
{
FIXME("%s: stub\n", debugstr_w(path));
return E_NOTIMPL;
return PSUnregisterPropertySchema(path);
}
static HRESULT WINAPI propsys_RefreshPropertySchema(IPropertySystem *iface)
{
FIXME("refresh: stub\n");
return E_NOTIMPL;
return PSRefreshPropertySchema();
}
static const IPropertySystemVtbl propsysvtbl = {
......
......@@ -804,6 +804,8 @@ cpp_quote("HRESULT WINAPI PSPropertyKeyFromString(LPCWSTR,PROPERTYKEY*);")
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 PSRegisterPropertySchema(LPCWSTR);")
cpp_quote("HRESULT WINAPI PSUnregisterPropertySchema(LPCWSTR);")
/* 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