[pywin32-checkins] /hgroot/pywin32/pywin32: Autoduck fixes
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2012-08-07 08:33:42
|
changeset 702451ba44f2 in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=702451ba44f2 summary: Autoduck fixes diffstat: win32/src/win32security.i | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diffs (30 lines): diff -r aa89dec6e110 -r 702451ba44f2 win32/src/win32security.i --- a/win32/src/win32security.i Tue Aug 07 04:13:56 2012 -0400 +++ b/win32/src/win32security.i Tue Aug 07 04:32:52 2012 -0400 @@ -2851,7 +2851,7 @@ } %} -// @pyswig |LsaEnumerateAccountsWithUserRight|Return SIDs that hold specified priv +// @pyswig (<o PySID>,...)|LsaEnumerateAccountsWithUserRight|Return SIDs that hold specified priv %native(LsaEnumerateAccountsWithUserRight) PyLsaEnumerateAccountsWithUserRight; %{ static PyObject *PyLsaEnumerateAccountsWithUserRight(PyObject *self, PyObject *args) @@ -3931,7 +3931,7 @@ } %} -// @pyswig |TranslateName|Converts a directory service object name from one format to another. +// @pyswig <o PyUnicode>|TranslateName|Converts a directory service object name from one format to another. %native(TranslateName) PyTranslateName; %{ static PyObject *PyTranslateName(PyObject *self, PyObject *args) @@ -3971,7 +3971,7 @@ } %} -// @pyswig |CreateWellKnownSid|Returns one of the predefined well known sids +// @pyswig <o PySID>|CreateWellKnownSid|Returns one of the predefined well known sids %native(CreateWellKnownSid) PyCreateWellKnownSid; %{ static PyObject *PyCreateWellKnownSid(PyObject *self, PyObject *args) |