[pywin32-checkins] pywin32/com/win32comext/internet/src internet.cpp, 1.7, 1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-09 07:21:12
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/internet/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14086/com/win32comext/internet/src Modified Files: internet.cpp Log Message: More modules use the PYWIN_MODULE_* macros Index: internet.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/internet/src/internet.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** internet.cpp 8 Dec 2008 13:16:36 -0000 1.7 --- internet.cpp 9 Dec 2008 07:21:06 -0000 1.8 *************** *** 221,225 **** /* List of module functions */ // @module internet|A module, encapsulating the ActiveX Internet interfaces ! static struct PyMethodDef internet_methods[]= { { "CoInternetCreateSecurityManager", PyCoInternetCreateSecurityManager}, // @pymeth CoInternetCreateSecurityManager| --- 221,225 ---- /* List of module functions */ // @module internet|A module, encapsulating the ActiveX Internet interfaces ! static struct PyMethodDef internet_functions[]= { { "CoInternetCreateSecurityManager", PyCoInternetCreateSecurityManager}, // @pymeth CoInternetCreateSecurityManager| *************** *** 259,263 **** PYWIN_MODULE_INIT_FUNC(internet) { ! PYWIN_MODULE_INIT_PREPARE(internet, internet_methods, "A module, encapsulating the ActiveX Internet interfaces"); --- 259,263 ---- PYWIN_MODULE_INIT_FUNC(internet) { ! PYWIN_MODULE_INIT_PREPARE(internet, internet_functions, "A module, encapsulating the ActiveX Internet interfaces"); |