Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10192
Modified Files:
PyIEnumExplorerCommand.cpp PyIEnumExplorerCommand.h
Log Message:
Make IEnumExplorerCommand a true iterator
Index: PyIEnumExplorerCommand.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/src/PyIEnumExplorerCommand.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** PyIEnumExplorerCommand.cpp 8 Feb 2008 22:32:29 -0000 1.2
--- PyIEnumExplorerCommand.cpp 9 Feb 2008 05:53:01 -0000 1.3
***************
*** 153,157 ****
};
! PyComTypeObject PyIEnumExplorerCommand::type("PyIEnumExplorerCommand",
&PyIUnknown::type,
sizeof(PyIEnumExplorerCommand),
--- 153,157 ----
};
! PyComEnumTypeObject PyIEnumExplorerCommand::type("PyIEnumExplorerCommand",
&PyIUnknown::type,
sizeof(PyIEnumExplorerCommand),
Index: PyIEnumExplorerCommand.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/src/PyIEnumExplorerCommand.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PyIEnumExplorerCommand.h 7 Feb 2008 05:42:01 -0000 1.1
--- PyIEnumExplorerCommand.h 9 Feb 2008 05:53:01 -0000 1.2
***************
*** 10,14 ****
MAKE_PYCOM_CTOR(PyIEnumExplorerCommand);
static IEnumExplorerCommand *GetI(PyObject *self);
! static PyComTypeObject type;
// The Python methods
--- 10,14 ----
MAKE_PYCOM_CTOR(PyIEnumExplorerCommand);
static IEnumExplorerCommand *GetI(PyObject *self);
! static PyComEnumTypeObject type;
// The Python methods
|