Update of /cvsroot/pywin32/pywin32/win32/src/win32net
In directory sc8-pr-cvs1:/tmp/cvs-serv15648
Modified Files:
win32netuse.cpp
Log Message:
Autoduck corrections.
Index: win32netuse.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/win32net/win32netuse.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** win32netuse.cpp 29 Jan 2001 05:23:36 -0000 1.2
--- win32netuse.cpp 7 Jun 2003 02:05:08 -0000 1.3
***************
*** 65,69 ****
};
! // @object PyUSE_INFO*|The following USE_INFO levels are supported.
static struct PyNET_STRUCT use_infos[] = { // @flagh Level|Data
{ 0, ui0, sizeof(USE_INFO_0) }, // @flag 0|<o PyUSE_INFO_0>
--- 65,69 ----
};
! // @object PyUSE_INFO_*|The following USE_INFO levels are supported.
static struct PyNET_STRUCT use_infos[] = { // @flagh Level|Data
{ 0, ui0, sizeof(USE_INFO_0) }, // @flag 0|<o PyUSE_INFO_0>
***************
*** 87,91 ****
// @pyparm string/<o PyUnicode>|server||The name of the server, or None.
// @pyparm int|level||The information level contained in the data
! // @pyparm mapping|data||A dictionary holding the share data.
if (!PyArg_ParseTuple(args, "OiO", &obServer, &level, &obData))
return NULL;
--- 87,91 ----
// @pyparm string/<o PyUnicode>|server||The name of the server, or None.
// @pyparm int|level||The information level contained in the data
! // @pyparm mapping|data||A dictionary holding the share data in the format of <o PyUSE_INFO_*>.
if (!PyArg_ParseTuple(args, "OiO", &obServer, &level, &obData))
return NULL;
***************
*** 251,255 ****
return ret;
// @pyseeapi NetUseGetInfo
! // @rdesc The result will be a dictionary in one of the <o PyWKSTA_INFO_*>
// formats, depending on the level parameter.
}
--- 251,255 ----
return ret;
// @pyseeapi NetUseGetInfo
! // @rdesc The result will be a dictionary in one of the <o PyUSE_INFO_*>
// formats, depending on the level parameter.
}
|