shlwapi: Add a stub implementation for IUnknown_QueryServiceExec.
This commit is contained in:
parent
3c1e67d084
commit
db8090eec2
|
@ -4420,3 +4420,11 @@ BOOL WINAPI ShellMessageBoxWrapW(HMODULE mod, DWORD unknown1, UINT uId,
|
|||
mod, unknown1, uId, debugstr_w(title), unknown2, debugstr_w(filename));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
HRESULT WINAPI IUnknown_QueryServiceExec(IUnknown *unk, REFIID service, REFIID clsid,
|
||||
DWORD x1, DWORD x2, DWORD x3, void **ppvOut)
|
||||
{
|
||||
FIXME("%p %s %s %08lx %08lx %08lx %p\n", unk,
|
||||
debugstr_guid(service), debugstr_guid(clsid), x1, x2, x3, ppvOut);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
|
@ -481,7 +481,7 @@
|
|||
481 stdcall -noname IUnknown_HasFocusIO(ptr)
|
||||
482 stub -noname SHMessageBoxHelpA
|
||||
483 stub -noname SHMessageBoxHelpW
|
||||
484 stub -noname IUnknown_QueryServiceExec
|
||||
484 stdcall -noname IUnknown_QueryServiceExec(ptr ptr ptr long long long ptr)
|
||||
485 stub -noname MapWin32ErrorToSTG
|
||||
486 stub -noname ModeToCreateFileFlags
|
||||
|
||||
|
|
Loading…
Reference in New Issue