]> git.cworth.org Git - apitrace/commitdiff
Improve IUnknown::QueryInterface
authorJosé Fonseca <jose.r.fonseca@gmail.com>
Thu, 5 Apr 2012 18:58:00 +0000 (19:58 +0100)
committerJosé Fonseca <jose.r.fonseca@gmail.com>
Thu, 5 Apr 2012 18:58:00 +0000 (19:58 +0100)
specs/winapi.py

index e5df0f9d3f81e7800b1a9a5ff2729a0ecb1ea743..a7556e714fd45fc1513333c182ce36934156657a 100644 (file)
@@ -182,7 +182,7 @@ HRESULT_com = FakeEnum(HRESULT, [
 ])
 
 IUnknown.methods = (
-       Method(HRESULT_com, "QueryInterface", ((REFIID, "riid"), Out(Pointer(OpaquePointer(Void)), "ppvObj"))),
+       Method(HRESULT_com, "QueryInterface", ((REFIID, "riid"), Out(Pointer(ObjPointer(Void)), "ppvObj"))),
        Method(ULONG, "AddRef", ()),
        Method(ULONG, "Release", ()),
 )