[pywin32-checkins] pywin32/win32/Lib win32con.py,1.19,1.20
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2007-04-14 07:21:51
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10701/win32/Lib Modified Files: win32con.py Log Message: Add flags for GetFinalPathNameByHandle Index: win32con.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32con.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** win32con.py 8 Feb 2007 09:53:23 -0000 1.19 --- win32con.py 14 Apr 2007 07:19:37 -0000 1.20 *************** *** 4935,4936 **** --- 4935,4944 ---- MM_WORKING_SET_MIN_HARD_ENABLE = 4 MM_WORKING_SET_MIN_HARD_DISABLE = 8 + + ## Flags for GetFinalPathNameByHandle + VOLUME_NAME_DOS = 0 + VOLUME_NAME_GUID = 1 + VOLUME_NAME_NT = 2 + VOLUME_NAME_NONE = 4 + FILE_NAME_NORMALIZED = 0 + FILE_NAME_OPENED = 8 |