[pywin32-checkins] pywin32/com/win32com/src/include PyIEnumVARIANT.h,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-24 16:50:05
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv25271/include Modified Files: PyIEnumVARIANT.h Log Message: Add support for the Python tp_iter slot for PyIEnumVARIANT Index: PyIEnumVARIANT.h =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/include/PyIEnumVARIANT.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PyIEnumVARIANT.h 5 May 2000 01:15:29 -0000 1.2 --- PyIEnumVARIANT.h 23 Oct 2003 02:43:04 -0000 1.3 *************** *** 12,15 **** --- 12,17 ---- static PyComTypeObject type; + virtual PyObject *iternext(); + // The Python methods static PyObject *Next(PyObject *self, PyObject *args); |