[pywin32-checkins] pywin32/win32/src PyACL.cpp,1.12,1.13
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-05-31 12:42:06
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29595 Modified Files: PyACL.cpp Log Message: autoduck fixes/enhancements Index: PyACL.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/PyACL.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** PyACL.cpp 26 Jul 2004 06:47:16 -0000 1.12 --- PyACL.cpp 31 May 2005 12:41:46 -0000 1.13 *************** *** 846,850 **** ! // @pymethod |PyACL|GetAclSize|Returns the storage size of the ACL. PyObject *PyACL::GetAclSize(PyObject *self, PyObject *args) { --- 846,850 ---- ! // @pymethod int|PyACL|GetAclSize|Returns the storage size of the ACL. PyObject *PyACL::GetAclSize(PyObject *self, PyObject *args) { *************** *** 859,863 **** } ! // @pymethod |PyACL|GetAclRevision|Returns revision of the ACL. PyObject *PyACL::GetAclRevision(PyObject *self, PyObject *args) { --- 859,863 ---- } ! // @pymethod int|PyACL|GetAclRevision|Returns revision of the ACL. PyObject *PyACL::GetAclRevision(PyObject *self, PyObject *args) { *************** *** 872,876 **** } ! // @pymethod |PyACL|GetAceCount|Returns the number of ACEs in the ACL. PyObject *PyACL::GetAceCount(PyObject *self, PyObject *args) { --- 872,876 ---- } ! // @pymethod int|PyACL|GetAceCount|Returns the number of ACEs in the ACL. PyObject *PyACL::GetAceCount(PyObject *self, PyObject *args) { *************** *** 886,894 **** ! // @pymethod |PyACL|GetAce|Gets an Ace from the ACL ! // @comm Conventional ACE's (types ACCESS_ALLOWED_ACE, ACCESS_DENIED_ACE, SYSTEM_AUDIT_ACE) are returned as a tuple of ((aceType, AceFlags), Mask, SID). ! // Object ACE's (types ACCESS_ALLOWED_OBJECT_ACE, ACCESS_DENIED_OBJECT_ACE, SYSTEM_AUDIT_OBJECT_ACE) are returned as a tuple of ! // ((aceType, AceFlags), Mask, ObjectType, InheritedObjectType, SID). ObjectType and InheritedObjectType are <o PyIID>'s. ! // For details see the API documentation. PyObject *PyACL::GetAce(PyObject *self, PyObject *args) { --- 886,903 ---- ! // @pymethod tuple|PyACL|GetAce|Gets an Ace from the ACL ! // @rdesc Conventional ACE's (types ACCESS_ALLOWED_ACE, ACCESS_DENIED_ACE, SYSTEM_AUDIT_ACE) are returned ! // as a tuple of: ! // @tupleitem 0|(int, int)|aceType, AceFlags| ! // @tupleitem 1|int|Mask| ! // @tupleitem 2|<o PySID>|sid| ! // <nl>Object ACE's (types ACCESS_ALLOWED_OBJECT_ACE, ACCESS_DENIED_OBJECT_ACE, SYSTEM_AUDIT_OBJECT_ACE) ! // are returned as a tuple: ! // @tupleitem 0|(int, int)|aceType, AceFlags| ! // @tupleitem 1|int|mask| ! // @tupleitem 2|<o PyIID>|ObjectType| ! // @tupleitem 3|<o PyIID>|InheritedObjectType| ! // @tupleitem 4|<o PySID>|sid| ! // <nl>For details see the API documentation. PyObject *PyACL::GetAce(PyObject *self, PyObject *args) { |