[pywin32-checkins] pywin32/win32/Lib winperf.py,1.1,1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-01-25 13:40:45
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16433 Modified Files: winperf.py Log Message: Replace 0x80000000 with -2147483648 to prevent a warning. Index: winperf.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/winperf.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** winperf.py 2 Sep 1999 00:19:29 -0000 1.1 --- winperf.py 25 Jan 2005 13:40:37 -0000 1.2 *************** *** 127,131 **** (PERF_SIZE_LARGE | PERF_TYPE_COUNTER | PERF_COUNTER_ELAPSED |\ PERF_OBJECT_TIMER | PERF_DISPLAY_SECONDS) ! PERF_COUNTER_HISTOGRAM_TYPE = 0x80000000 PERF_COUNTER_DELTA = \ (PERF_SIZE_DWORD | PERF_TYPE_COUNTER | PERF_COUNTER_VALUE |\ --- 127,131 ---- (PERF_SIZE_LARGE | PERF_TYPE_COUNTER | PERF_COUNTER_ELAPSED |\ PERF_OBJECT_TIMER | PERF_DISPLAY_SECONDS) ! PERF_COUNTER_HISTOGRAM_TYPE = -2147483648 # 0x80000000 PERF_COUNTER_DELTA = \ (PERF_SIZE_DWORD | PERF_TYPE_COUNTER | PERF_COUNTER_VALUE |\ |