[pywin32-checkins] pywin32/com/win32comext/shell shellcon.py,1.3,1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-06 12:58:53
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell In directory sc8-pr-cvs1:/tmp/cvs-serv27396 Modified Files: shellcon.py Log Message: New shell constants. Index: shellcon.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/shellcon.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shellcon.py 2 Jul 2003 03:41:42 -0000 1.3 --- shellcon.py 6 Oct 2003 12:58:49 -0000 1.4 *************** *** 526,527 **** --- 526,541 ---- CSIDL_COMMON_APPDATA = 35 CSIDL_LOCAL_APPDATA = 28 + + SHCONTF_FOLDERS = 32 # for shell browser + SHCONTF_NONFOLDERS = 64 # for default view + SHCONTF_INCLUDEHIDDEN = 128 # for hidden/system objects + + SHGDN_NORMAL = 0 # default (display purpose) + SHGDN_INFOLDER = 1 # displayed under a folder (relative) + SHGDN_INCLUDE_NONFILESYS = 0x2000 # if not set, display names for shell name space items that are not in the file system will fail. + SHGDN_FORADDRESSBAR = 0x4000 # for displaying in the address (drives dropdown) bar + SHGDN_FORPARSING = 0x8000 # for ParseDisplayName or path + + SHCONTF_FOLDERS = 32 # for shell browser + SHCONTF_NONFOLDERS = 64 # for default view + SHCONTF_INCLUDEHIDDEN = 128 # for hidden/system objects |