Commit 2b32128d authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

shlwapi: Add a stub implementation for IUnknown_ProfferService.

parent db8090ee
......@@ -4428,3 +4428,9 @@ HRESULT WINAPI IUnknown_QueryServiceExec(IUnknown *unk, REFIID service, REFIID c
debugstr_guid(service), debugstr_guid(clsid), x1, x2, x3, ppvOut);
return E_NOTIMPL;
}
HRESULT WINAPI IUnknown_ProfferService(IUnknown *unk, void *x0, void *x1, void *x2)
{
FIXME("%p %p %p %p\n", unk, x0, x1, x2);
return E_NOTIMPL;
}
......@@ -507,7 +507,7 @@
511 stub -noname PathFileExistsDefExtAndAttributesW
512 stub -noname IStream_ReadPidl
513 stub -noname IStream_WritePidl
514 stub -noname IUnknown_ProfferService
514 stdcall -noname IUnknown_ProfferService(ptr ptr ptr ptr)
516 stdcall -noname SKGetValueW(long wstr wstr long long long)
517 stub -noname SKSetValueW
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment