[pywin32-checkins] pywin32/com/win32com/src/include PyIGlobalInterfaceTable.h,NONE,1.1
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-01-10 04:04:11
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1539/win32com/src/include Added Files: PyIGlobalInterfaceTable.h Log Message: Patch from Stefan Schukat for IGlobalInterfaceTable. --- NEW FILE: PyIGlobalInterfaceTable.h --- // This file declares the IGlobalInterfaceTable.h Interface and Gateway for Python. // Generated by makegw.py // --------------------------------------------------- // // Interface Declaration class PyIGlobalInterfaceTable : public PyIUnknown { public: MAKE_PYCOM_CTOR(PyIGlobalInterfaceTable); static IGlobalInterfaceTable *GetI(PyObject *self); static PyComTypeObject type; // The Python methods static PyObject *RegisterInterfaceInGlobal(PyObject *self, PyObject *args); static PyObject *RevokeInterfaceFromGlobal(PyObject *self, PyObject *args); static PyObject *GetInterfaceFromGlobal(PyObject *self, PyObject *args); protected: PyIGlobalInterfaceTable(IUnknown *pdisp); ~PyIGlobalInterfaceTable(); }; |