Update of /cvsroot/pywin32/pywin32/com/win32com/src/include
In directory sc8-pr-cvs1:/tmp/cvs-serv3671/include
Modified Files:
PyIMoniker.h
Log Message:
Fix a reference leak in the PyIMoniker enum implementation. Make
a moniker an iterator
Index: PyIMoniker.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/include/PyIMoniker.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PyIMoniker.h 1 Sep 1999 23:04:14 -0000 1.1
--- PyIMoniker.h 2 Nov 2003 09:56:42 -0000 1.2
***************
*** 8,12 ****
public:
MAKE_PYCOM_CTOR(PyIEnumMoniker);
! static PyComTypeObject type;
static IEnumMoniker *GetI(PyObject *self);
--- 8,12 ----
public:
MAKE_PYCOM_CTOR(PyIEnumMoniker);
! static PyComEnumTypeObject type;
static IEnumMoniker *GetI(PyObject *self);
***************
*** 26,30 ****
public:
MAKE_PYCOM_CTOR(PyIMoniker);
! static PyComTypeObject type;
static IMoniker *GetI(PyObject *self);
--- 26,30 ----
public:
MAKE_PYCOM_CTOR(PyIMoniker);
! static PyComEnumProviderTypeObject type;
static IMoniker *GetI(PyObject *self);
|