[pywin32-checkins] pywin32/com/win32comext/shell shellcon.py,1.11,1.12
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2004-07-02 04:13:24
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30326 Modified Files: shellcon.py Log Message: New FD_ constants. Index: shellcon.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/shellcon.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shellcon.py 25 Apr 2004 03:59:41 -0000 1.11 --- shellcon.py 2 Jul 2004 04:13:13 -0000 1.12 *************** *** 871,872 **** --- 871,882 ---- SHCNRF_RecursiveInterrupt = 4096 SHCNRF_NewDelivery = 32768 + + FD_CLSID = 0x0001 + FD_SIZEPOINT = 0x0002 + FD_ATTRIBUTES = 0x0004 + FD_CREATETIME = 0x0008 + FD_ACCESSTIME = 0x0010 + FD_WRITESTIME = 0x0020 + FD_FILESIZE = 0x0040 + FD_PROGRESSUI = 0x4000 + FD_LINKUI = 0x8000 |