shell32: Add SHAssocEnumHandlersForProtocolByApplication stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56581
This commit is contained in:
Alex Henrie 2024-05-01 22:15:25 -06:00 committed by Alexandre Julliard
parent 4e0e623859
commit 0af35ccd06
2 changed files with 10 additions and 0 deletions

View file

@ -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;
}

View file

@ -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)