mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
shell32: Add SHAssocEnumHandlersForProtocolByApplication stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56581
This commit is contained in:
parent
4e0e623859
commit
0af35ccd06
2 changed files with 10 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue