From: José Fonseca <jose.r.fonseca@gmail.com>
Date: Thu, 5 Apr 2012 21:58:43 +0000 (+0100)
Subject: Revert "Improve IUnknown::QueryInterface"
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=b454af1489c0cf28fd67dea3fcd5a13842d478ca;p=apitrace

Revert "Improve IUnknown::QueryInterface"

This reverts commit 7f3688bb956928bfef266ebbe0b3ccbf6e984559.
---

diff --git a/specs/winapi.py b/specs/winapi.py
index a7556e7..e5df0f9 100644
--- a/specs/winapi.py
+++ b/specs/winapi.py
@@ -182,7 +182,7 @@ HRESULT_com = FakeEnum(HRESULT, [
 ])
 
 IUnknown.methods = (
-	Method(HRESULT_com, "QueryInterface", ((REFIID, "riid"), Out(Pointer(ObjPointer(Void)), "ppvObj"))),
+	Method(HRESULT_com, "QueryInterface", ((REFIID, "riid"), Out(Pointer(OpaquePointer(Void)), "ppvObj"))),
 	Method(ULONG, "AddRef", ()),
 	Method(ULONG, "Release", ()),
 )