[pywin32-checkins] pywin32/win32/Lib win32con.py,1.15,1.16
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2006-12-08 10:48:43
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11786/win32/Lib Modified Files: win32con.py Log Message: Add some more constants Index: win32con.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32con.py,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** win32con.py 13 May 2006 12:01:24 -0000 1.15 --- win32con.py 8 Dec 2006 10:48:42 -0000 1.16 *************** *** 2764,2767 **** --- 2764,2781 ---- NUMRESERVED = 106 COLORRES = 108 + + PHYSICALWIDTH = 110 + PHYSICALHEIGHT = 111 + PHYSICALOFFSETX = 112 + PHYSICALOFFSETY = 113 + SCALINGFACTORX = 114 + SCALINGFACTORY = 115 + VREFRESH = 116 + DESKTOPVERTRES = 117 + DESKTOPHORZRES = 118 + BLTALIGNMENT = 119 + SHADEBLENDCAPS = 120 + COLORMGMTCAPS = 121 + DT_PLOTTER = 0 DT_RASDISPLAY = 1 *************** *** 3036,3040 **** DMBIN_LARGECAPACITY = 11 DMBIN_CASSETTE = 14 ! DMBIN_LAST = DMBIN_CASSETTE DMBIN_USER = 256 --- 3050,3055 ---- DMBIN_LARGECAPACITY = 11 DMBIN_CASSETTE = 14 ! DMBIN_FORMSOURCE = 15 ! DMBIN_LAST = DMBIN_FORMSOURCE DMBIN_USER = 256 *************** *** 3182,3185 **** --- 3197,3209 ---- DCTT_DOWNLOAD_OUTLINE = 8 + DCBA_FACEUPNONE = 0 + DCBA_FACEUPCENTER = 1 + DCBA_FACEUPLEFT = 2 + DCBA_FACEUPRIGHT = 3 + DCBA_FACEDOWNNONE = 256 + DCBA_FACEDOWNCENTER = 257 + DCBA_FACEDOWNLEFT = 258 + DCBA_FACEDOWNRIGHT = 259 + CA_NEGATIVE = 1 CA_LOG_FILTER = 2 *************** *** 3471,3474 **** --- 3495,3501 ---- CLR_INVALID = -1 + DC_BRUSH = 18 + DC_PEN = 19 + # Exception/Status codes from winuser.h and winnt.h STATUS_WAIT_0 = 0 |