[pywin32-checkins] pywin32/com/win32com/src/include PyIRunningObjectTable.h,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-10-20 22:36:45
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11717/include Modified Files: PyIRunningObjectTable.h Log Message: Add IRunningObjectTable::Register and Revoke. Index: PyIRunningObjectTable.h =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/include/PyIRunningObjectTable.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PyIRunningObjectTable.h 2 Nov 2003 09:57:45 -0000 1.2 --- PyIRunningObjectTable.h 20 Oct 2005 22:36:35 -0000 1.3 *************** *** 10,13 **** --- 10,15 ---- static PyObject *GetObject(PyObject *self, PyObject *args); static PyObject *EnumRunning(PyObject *self, PyObject *args); + static PyObject *Register(PyObject *self, PyObject *args); + static PyObject *Revoke(PyObject *self, PyObject *args); protected: |