[pywin32-checkins] pywin32/com/win32comext/internet/src internet.cpp, 1.3, 1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2007-10-22 04:35:21
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/internet/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26226/com/win32comext/internet/src Modified Files: internet.cpp Log Message: autoduck Index: internet.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/internet/src/internet.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** internet.cpp 16 Oct 2007 11:34:09 -0000 1.3 --- internet.cpp 22 Oct 2007 04:35:24 -0000 1.4 *************** *** 150,154 **** // The methods // ! // @pyswig bool|CoInternetIsFeatureEnabled| // @rdesc Returns true for S_OK, False for other non-error hresults, or // raises a com_error. --- 150,154 ---- // The methods // ! // @pymethod bool|internet|CoInternetIsFeatureEnabled| // @rdesc Returns true for S_OK, False for other non-error hresults, or // raises a com_error. *************** *** 169,172 **** --- 169,173 ---- } + // @pymethod int|internet|CoInternetSetFeatureEnabled| static PyObject *PyCoInternetSetFeatureEnabled(PyObject *self, PyObject *args) { *************** *** 189,194 **** static struct PyMethodDef internet_methods[]= { ! { "CoInternetIsFeatureEnabled", PyCoInternetIsFeatureEnabled}, ! { "CoInternetSetFeatureEnabled", PyCoInternetSetFeatureEnabled}, { NULL, NULL }, }; --- 190,195 ---- static struct PyMethodDef internet_methods[]= { ! { "CoInternetIsFeatureEnabled", PyCoInternetIsFeatureEnabled}, // @pymeth CoInternetIsFeatureEnabled| ! { "CoInternetSetFeatureEnabled", PyCoInternetSetFeatureEnabled}, // @pymeth CoInternetSetFeatureEnabled| { NULL, NULL }, }; |