From: Alex Henrie alexhenrie24@gmail.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56581 --- dlls/shell32/assoc.c | 9 +++++++++ dlls/shell32/shell32.spec | 1 + 2 files changed, 10 insertions(+)
diff --git a/dlls/shell32/assoc.c b/dlls/shell32/assoc.c index 37cdc01101a..45e9781d078 100644 --- a/dlls/shell32/assoc.c +++ b/dlls/shell32/assoc.c @@ -1132,3 +1132,12 @@ HRESULT WINAPI SHAssocEnumHandlers(const WCHAR *extra, ASSOC_FILTER filter, IEnu *enumhandlers = &enumassoc->IEnumAssocHandlers_iface; return S_OK; } + +/************************************************************************** + * SHAssocEnumHandlersForProtocolByApplication [SHELL32.@] + */ +HRESULT WINAPI SHAssocEnumHandlersForProtocolByApplication(const WCHAR *protocol, REFIID riid, void **handlers) +{ + FIXME("(%s %s %p): stub\n", debugstr_w(protocol), debugstr_guid(riid), handlers); + return E_NOTIMPL; +} diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 8155365318d..bdf3378a235 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -332,6 +332,7 @@ @ stdcall SHAddToRecentDocs (long ptr) @ stdcall SHAppBarMessage(long ptr) @ stdcall SHAssocEnumHandlers(wstr long ptr) +@ stdcall SHAssocEnumHandlersForProtocolByApplication(wstr ptr ptr) @ stdcall SHBindToFolderIDListParent(ptr ptr ptr ptr ptr) @ stdcall SHBindToObject(ptr ptr ptr ptr ptr) @ stdcall SHBindToParent(ptr ptr ptr ptr)