From: Roger U. <ru...@us...> - 2007-02-08 09:53:26
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29588 Modified Files: win32con.py Log Message: Add flags for SetSystemFileCacheSize Index: win32con.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32con.py,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** win32con.py 5 Feb 2007 01:46:40 -0000 1.18 --- win32con.py 8 Feb 2007 09:53:23 -0000 1.19 *************** *** 4929,4930 **** --- 4929,4936 ---- GRADIENT_FILL_TRIANGLE = 2 GRADIENT_FILL_OP_FLAG = 255 + + ## flags used with Get/SetSystemFileCacheSize + MM_WORKING_SET_MAX_HARD_ENABLE = 1 + MM_WORKING_SET_MAX_HARD_DISABLE = 2 + MM_WORKING_SET_MIN_HARD_ENABLE = 4 + MM_WORKING_SET_MIN_HARD_DISABLE = 8 |