shell32: Implement SHCreateAssociationRegistration.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=44253 Signed-off-by: Roman Pišl <rpisl@seznam.cz> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
83acbb79c1
commit
82a4e72036
|
@ -1139,6 +1139,14 @@ static const IEnumAssocHandlersVtbl enumassochandlersvtbl = {
|
|||
enumassochandlers_Next
|
||||
};
|
||||
|
||||
/**************************************************************************
|
||||
* SHCreateAssociationRegistration [SHELL32.@]
|
||||
*/
|
||||
HRESULT WINAPI SHCreateAssociationRegistration(REFIID riid, LPVOID *ppv)
|
||||
{
|
||||
return ApplicationAssociationRegistration_Constructor(NULL, riid, ppv);
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* SHAssocEnumHandlers [SHELL32.@]
|
||||
*/
|
||||
|
|
|
@ -338,6 +338,7 @@
|
|||
@ stdcall SHBrowseForFolderW(ptr)
|
||||
@ stdcall SHChangeNotify (long long ptr ptr)
|
||||
@ stub SHChangeNotifySuspendResume
|
||||
@ stdcall SHCreateAssociationRegistration(ptr ptr)
|
||||
@ stdcall SHCreateDataObject(ptr long ptr ptr ptr ptr)
|
||||
@ stdcall SHCreateDefaultContextMenu(ptr ptr ptr)
|
||||
@ stdcall SHCreateDirectoryExA(long str ptr)
|
||||
|
|
Loading…
Reference in New Issue