Commit 32ec7d7b authored by Andrew Boyarshin's avatar Andrew Boyarshin Committed by Alexandre Julliard

include: Fix IRequestDictionary IID.

IRequestDictionary had the wrong UUID specified (IResponse one). Found by using MIDL instead of WIDL to compile Wine headers: duplicated IID caused compilation error in MIDL. Signed-off-by: 's avatarAndrew Boyarshin <andrew.boyarshin@gmail.com> Signed-off-by: 's avatarNikolay Sivov <nsivov@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 8294b2c8
......@@ -13170,7 +13170,7 @@ static HRESULT WINAPI transformdest_QueryInterface(IUnknown *iface, REFIID riid,
IsEqualIID(riid, &IID_IServiceProvider) ||
IsEqualIID(riid, &IID_IStream) ||
IsEqualIID(riid, &IID_ISequentialStream) ||
IsEqualIID(riid, &IID_IRequestDictionary);
IsEqualIID(riid, &IID_IResponse);
todo_wine_if(IsEqualIID(riid, &IID_IXMLDOMDocument))
ok(known_iid, "Unexpected riid %s\n", wine_dbgstr_guid(riid));
......
......@@ -23,7 +23,7 @@ import "oaidl.idl";
[
object,
dual,
uuid(D97A6DA0-A864-11cf-83BE-00A0C90C2BD8)
uuid(D97A6DA0-A85F-11DF-83AE-00A0C90C2BD8)
]
interface IRequestDictionary : IDispatch
{
......
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