Module: wine Branch: master Commit: 0af35ccd06c30cd09d378599efe33a2bb7238b4f URL: https://gitlab.winehq.org/wine/wine/-/commit/0af35ccd06c30cd09d378599efe33a2...
Author: Alex Henrie alexhenrie24@gmail.com Date: Wed May 1 22:15:25 2024 -0600
shell32: Add SHAssocEnumHandlersForProtocolByApplication stub.
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)