[pywin32-checkins] pywin32/com/win32com/src PyComHelpers.cpp,1.6,1.7
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2004-03-30 04:37:40
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2636/com/win32com/src Modified Files: PyComHelpers.cpp Log Message: Allow us to build without STGOPTIONS support. Index: PyComHelpers.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/PyComHelpers.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PyComHelpers.cpp 2 Nov 2003 09:48:13 -0000 1.6 --- PyComHelpers.cpp 30 Mar 2004 04:26:07 -0000 1.7 *************** *** 306,309 **** --- 306,310 ---- } + #ifndef NO_PYCOM_STGOPTIONS BOOL PyCom_PyObjectAsSTGOPTIONS(PyObject *obstgoptions, STGOPTIONS **ppstgoptions) { *************** *** 347,350 **** --- 348,352 ---- return ret; } + #endif // NO_PYCOM_STGOPTIONS PyObject *PyCom_PyObjectFromSTATPROPSETSTG(STATPROPSETSTG *pStg) |