Update of /cvsroot/pywin32/pywin32/com/win32com
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv30327/com/win32com
Modified Files:
universal.py
Log Message:
Get vtable interfaces working on 64bit windows (Nikolay Igotti)
Index: universal.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/universal.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** universal.py 2 Oct 2008 12:09:53 -0000 1.14
--- universal.py 27 Aug 2010 07:32:02 -0000 1.15
***************
*** 163,166 ****
--- 163,168 ----
def vtbl_argsizes(self):
return [m.cbArgs for m in self._methods]
+ def vtbl_argcounts(self):
+ return [len(m.args) for m in self._methods]
def dispatch(self, ob, index, argPtr,
ReadFromInTuple=_univgw.ReadFromInTuple,
|