Update of /cvsroot/pywin32/pywin32/com/win32comext/bits/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17545
Modified Files:
Tag: sidnei-bits
PyIEnumBackgroundCopyFiles.cpp PyIEnumBackgroundCopyFiles.h
PyIEnumBackgroundCopyJobs.cpp PyIEnumBackgroundCopyJobs.h
Log Message:
Make the IEnum* interfaces true iterators
Index: PyIEnumBackgroundCopyJobs.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/bits/src/Attic/PyIEnumBackgroundCopyJobs.cpp,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -d -r1.1.2.2 -r1.1.2.3
*** PyIEnumBackgroundCopyJobs.cpp 7 Feb 2008 06:07:33 -0000 1.1.2.2
--- PyIEnumBackgroundCopyJobs.cpp 8 Feb 2008 05:27:57 -0000 1.1.2.3
***************
*** 152,156 ****
};
! PyComTypeObject PyIEnumBackgroundCopyJobs::type("PyIEnumBackgroundCopyJobs",
&PyIUnknown::type,
sizeof(PyIEnumBackgroundCopyJobs),
--- 152,156 ----
};
! PyComEnumTypeObject PyIEnumBackgroundCopyJobs::type("PyIEnumBackgroundCopyJobs",
&PyIUnknown::type,
sizeof(PyIEnumBackgroundCopyJobs),
Index: PyIEnumBackgroundCopyFiles.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/bits/src/Attic/PyIEnumBackgroundCopyFiles.cpp,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -d -r1.1.2.2 -r1.1.2.3
*** PyIEnumBackgroundCopyFiles.cpp 7 Feb 2008 06:07:33 -0000 1.1.2.2
--- PyIEnumBackgroundCopyFiles.cpp 8 Feb 2008 05:27:57 -0000 1.1.2.3
***************
*** 152,156 ****
};
! PyComTypeObject PyIEnumBackgroundCopyFiles::type("PyIEnumBackgroundCopyFiles",
&PyIUnknown::type,
sizeof(PyIEnumBackgroundCopyFiles),
--- 152,156 ----
};
! PyComEnumTypeObject PyIEnumBackgroundCopyFiles::type("PyIEnumBackgroundCopyFiles",
&PyIUnknown::type,
sizeof(PyIEnumBackgroundCopyFiles),
Index: PyIEnumBackgroundCopyFiles.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/bits/src/Attic/PyIEnumBackgroundCopyFiles.h,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -d -r1.1.2.2 -r1.1.2.3
*** PyIEnumBackgroundCopyFiles.h 7 Feb 2008 06:07:33 -0000 1.1.2.2
--- PyIEnumBackgroundCopyFiles.h 8 Feb 2008 05:27:57 -0000 1.1.2.3
***************
*** 13,17 ****
MAKE_PYCOM_CTOR(PyIEnumBackgroundCopyFiles);
static IEnumBackgroundCopyFiles *GetI(PyObject *self);
! static PyComTypeObject type;
// The Python methods
--- 13,17 ----
MAKE_PYCOM_CTOR(PyIEnumBackgroundCopyFiles);
static IEnumBackgroundCopyFiles *GetI(PyObject *self);
! static PyComEnumTypeObject type;
// The Python methods
Index: PyIEnumBackgroundCopyJobs.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/bits/src/Attic/PyIEnumBackgroundCopyJobs.h,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -d -r1.1.2.2 -r1.1.2.3
*** PyIEnumBackgroundCopyJobs.h 7 Feb 2008 06:07:33 -0000 1.1.2.2
--- PyIEnumBackgroundCopyJobs.h 8 Feb 2008 05:27:57 -0000 1.1.2.3
***************
*** 13,17 ****
MAKE_PYCOM_CTOR(PyIEnumBackgroundCopyJobs);
static IEnumBackgroundCopyJobs *GetI(PyObject *self);
! static PyComTypeObject type;
// The Python methods
--- 13,17 ----
MAKE_PYCOM_CTOR(PyIEnumBackgroundCopyJobs);
static IEnumBackgroundCopyJobs *GetI(PyObject *self);
! static PyComEnumTypeObject type;
// The Python methods
|