[pywin32-checkins] pywin32/com/win32comext/adsi/src PyDSOPObjects.cpp, 1.1, 1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2007-05-24 06:01:35
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/adsi/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23340/com/win32comext/adsi/src Modified Files: PyDSOPObjects.cpp Log Message: Another pass at getting things working on x64. This change incorporates most of Sidnei's work on the AMD64 branch, and updates most of the other win32 and win32com modules that haven't already had 64bit love from Roger (thanks guys!). Note this is not complete - among the outstanding issues are fixing 's#' format strings (but most of the tests *do* pass on x64, and the ones which don't fail for 'vista environment' reasons rather than x64 reasons) Index: PyDSOPObjects.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/adsi/src/PyDSOPObjects.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PyDSOPObjects.cpp 26 May 2005 11:39:30 -0000 1.1 --- PyDSOPObjects.cpp 24 May 2007 06:01:04 -0000 1.2 *************** *** 116,120 **** // object has no other (interesting) methods or attributes. // <nl>These objects are created via <om adsi.DSOP_SCOPE_INIT_INFOs>(size) ! int PyDSOP_SCOPE_INIT_INFOs_sq_length(PyObject *self) { PyDSOP_SCOPE_INIT_INFOs *p = (PyDSOP_SCOPE_INIT_INFOs *)self; --- 116,120 ---- // object has no other (interesting) methods or attributes. // <nl>These objects are created via <om adsi.DSOP_SCOPE_INIT_INFOs>(size) ! Py_ssize_t PyDSOP_SCOPE_INIT_INFOs_sq_length(PyObject *self) { PyDSOP_SCOPE_INIT_INFOs *p = (PyDSOP_SCOPE_INIT_INFOs *)self; *************** *** 122,126 **** } ! PyObject *PyDSOP_SCOPE_INIT_INFOs_sq_item(PyObject *self, int i) { PyDSOP_SCOPE_INIT_INFOs *p =(PyDSOP_SCOPE_INIT_INFOs *)self; --- 122,126 ---- } ! PyObject *PyDSOP_SCOPE_INIT_INFOs_sq_item(PyObject *self, Py_ssize_t i) { PyDSOP_SCOPE_INIT_INFOs *p =(PyDSOP_SCOPE_INIT_INFOs *)self; |