propsys: Forward corresponding methods to exports.

This commit is contained in:
Nikolay Sivov 2014-05-27 15:13:49 +04:00 committed by Alexandre Julliard
parent d897b32598
commit 47de869fda
2 changed files with 7 additions and 10 deletions

View File

@ -166,8 +166,7 @@ static ULONG WINAPI propsys_Release(IPropertySystem *iface)
static HRESULT WINAPI propsys_GetPropertyDescription(IPropertySystem *iface, static HRESULT WINAPI propsys_GetPropertyDescription(IPropertySystem *iface,
REFPROPERTYKEY propkey, REFIID riid, void **ppv) REFPROPERTYKEY propkey, REFIID riid, void **ppv)
{ {
FIXME("%p %s %p: stub\n", propkey, debugstr_guid(riid), ppv); return PSGetPropertyDescription(propkey, riid, ppv);
return E_NOTIMPL;
} }
static HRESULT WINAPI propsys_GetPropertyDescriptionByName(IPropertySystem *iface, 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, static HRESULT WINAPI propsys_GetPropertyDescriptionListFromString(IPropertySystem *iface,
LPCWSTR proplist, REFIID riid, void **ppv) LPCWSTR proplist, REFIID riid, void **ppv)
{ {
FIXME("%s %s %p: stub\n", debugstr_w(proplist), debugstr_guid(riid), ppv); return PSGetPropertyDescriptionListFromString(proplist, riid, ppv);
return E_NOTIMPL;
} }
static HRESULT WINAPI propsys_EnumeratePropertyDescriptions(IPropertySystem *iface, 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) static HRESULT WINAPI propsys_RegisterPropertySchema(IPropertySystem *iface, LPCWSTR path)
{ {
FIXME("%s: stub\n", debugstr_w(path)); return PSRegisterPropertySchema(path);
return E_NOTIMPL;
} }
static HRESULT WINAPI propsys_UnregisterPropertySchema(IPropertySystem *iface, LPCWSTR path) static HRESULT WINAPI propsys_UnregisterPropertySchema(IPropertySystem *iface, LPCWSTR path)
{ {
FIXME("%s: stub\n", debugstr_w(path)); return PSUnregisterPropertySchema(path);
return E_NOTIMPL;
} }
static HRESULT WINAPI propsys_RefreshPropertySchema(IPropertySystem *iface) static HRESULT WINAPI propsys_RefreshPropertySchema(IPropertySystem *iface)
{ {
FIXME("refresh: stub\n"); return PSRefreshPropertySchema();
return E_NOTIMPL;
} }
static const IPropertySystemVtbl propsysvtbl = { static const IPropertySystemVtbl propsysvtbl = {

View File

@ -804,6 +804,8 @@ 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 PSGetPropertyDescriptionListFromString(LPCWSTR,REFIID,void **);")
cpp_quote("HRESULT WINAPI PSRefreshPropertySchema(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 */ /* TODO: Add remainder of the C api here */