[pywin32-checkins] pywin32/com/win32comext/shell shellcon.py,1.4,1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-09 13:25:46
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell In directory sc8-pr-cvs1:/tmp/cvs-serv6818 Modified Files: shellcon.py Log Message: New constants. Index: shellcon.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/shellcon.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** shellcon.py 6 Oct 2003 12:58:49 -0000 1.4 --- shellcon.py 9 Oct 2003 13:25:42 -0000 1.5 *************** *** 540,541 **** --- 540,561 ---- SHCONTF_NONFOLDERS = 64 # for default view SHCONTF_INCLUDEHIDDEN = 128 # for hidden/system objects + + BFO_NONE = 0 + BFO_BROWSER_PERSIST_SETTINGS = 0x1 + BFO_RENAME_FOLDER_OPTIONS_TOINTERNET = 0x2 + BFO_BOTH_OPTIONS = 0x4 + BIF_PREFER_INTERNET_SHORTCUT = 0x8 + BFO_BROWSE_NO_IN_NEW_PROCESS = 0x10 + BFO_ENABLE_HYPERLINK_TRACKING = 0x20 + BFO_USE_IE_OFFLINE_SUPPORT = 0x40 + BFO_SUBSTITUE_INTERNET_START_PAGE = 0x80 + BFO_USE_IE_LOGOBANDING = 0x100 + BFO_ADD_IE_TOCAPTIONBAR = 0x200 + BFO_USE_DIALUP_REF = 0x400 + BFO_USE_IE_TOOLBAR = 0x800 + BFO_NO_PARENT_FOLDER_SUPPORT = 0x1000 + BFO_NO_REOPEN_NEXT_RESTART = 0x2000 + BFO_GO_HOME_PAGE = 0x4000 + BFO_PREFER_IEPROCESS = 0x8000 + BFO_SHOW_NAVIGATION_CANCELLED = 0x10000 + BFO_QUERY_ALL = -1 |