[pywin32-checkins] pywin32/com/win32comext/axdebug/src AXDebug.cpp, 1.4.4.2, 1.4.4.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-12-13 10:17:14
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/axdebug/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21909 Modified Files: Tag: py3k AXDebug.cpp Log Message: Use new name for module init macro Index: AXDebug.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axdebug/src/AXDebug.cpp,v retrieving revision 1.4.4.2 retrieving revision 1.4.4.3 diff -C2 -d -r1.4.4.2 -r1.4.4.3 *** AXDebug.cpp 9 Dec 2008 12:38:52 -0000 1.4.4.2 --- AXDebug.cpp 13 Dec 2008 10:17:09 -0000 1.4.4.3 *************** *** 280,284 **** }; ! #define ADD_CONSTANT(tok) if (PyModule_AddIntConstant(module, #tok, tok) == -1) RETURN_ERROR; /* Module initialisation */ --- 280,284 ---- }; ! #define ADD_CONSTANT(tok) if (PyModule_AddIntConstant(module, #tok, tok) == -1) PYWIN_MODULE_INIT_RETURN_ERROR; /* Module initialisation */ *************** *** 293,297 **** axdebug_Error = PyErr_NewException("axdebug.error", NULL, NULL); if (axdebug_Error == NULL || PyDict_SetItemString(dict, "error", axdebug_Error) != 0) ! RETURN_ERROR; // AX-Debugging interface registration --- 293,297 ---- axdebug_Error = PyErr_NewException("axdebug.error", NULL, NULL); if (axdebug_Error == NULL || PyDict_SetItemString(dict, "error", axdebug_Error) != 0) ! PYWIN_MODULE_INIT_RETURN_ERROR; // AX-Debugging interface registration |