[pywin32-checkins] pywin32/win32/Lib win32netcon.py,1.4,1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-06-08 01:34:33
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20006/Lib Modified Files: win32netcon.py Log Message: Add NetGetJoinInformation and related constants. Index: win32netcon.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32netcon.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** win32netcon.py 12 Jan 2005 02:21:48 -0000 1.4 --- win32netcon.py 8 Jun 2005 01:34:24 -0000 1.5 *************** *** 644,645 **** --- 644,652 ---- NetSetupNonExistentDomain = 4 NetSetupDnsMachine = 5 + + ## NETSETUP_JOIN_STATUS, use with NetGetJoinInformation + NetSetupUnknownStatus = 0 + NetSetupUnjoined = 1 + NetSetupWorkgroupName = 2 + NetSetupDomainName = 3 + |