[pywin32-checkins] pywin32/win32/Lib win32con.py,1.22,1.23
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-05-04 10:43:36
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27736/win32/Lib Modified Files: win32con.py Log Message: device notification constants from dbt.h Index: win32con.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32con.py,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** win32con.py 10 Apr 2008 02:09:43 -0000 1.22 --- win32con.py 4 May 2008 10:43:37 -0000 1.23 *************** *** 4947,4948 **** --- 4947,5017 ---- FILE_NAME_NORMALIZED = 0 FILE_NAME_OPENED = 8 + + DEVICE_NOTIFY_WINDOW_HANDLE = 0x00000000 + DEVICE_NOTIFY_SERVICE_HANDLE = 0x00000001 + + # From Dbt.h + # Generated by h2py from Dbt.h + WM_DEVICECHANGE = 0x0219 + BSF_QUERY = 0x00000001 + BSF_IGNORECURRENTTASK = 0x00000002 + BSF_FLUSHDISK = 0x00000004 + BSF_NOHANG = 0x00000008 + BSF_POSTMESSAGE = 0x00000010 + BSF_FORCEIFHUNG = 0x00000020 + BSF_NOTIMEOUTIFNOTHUNG = 0x00000040 + BSF_MSGSRV32ISOK = (-2147483648) + BSF_MSGSRV32ISOK_BIT = 31 + BSM_ALLCOMPONENTS = 0x00000000 + BSM_VXDS = 0x00000001 + BSM_NETDRIVER = 0x00000002 + BSM_INSTALLABLEDRIVERS = 0x00000004 + BSM_APPLICATIONS = 0x00000008 + DBT_APPYBEGIN = 0x0000 + DBT_APPYEND = 0x0001 + DBT_DEVNODES_CHANGED = 0x0007 + DBT_QUERYCHANGECONFIG = 0x0017 + DBT_CONFIGCHANGED = 0x0018 + DBT_CONFIGCHANGECANCELED = 0x0019 + DBT_MONITORCHANGE = 0x001B + DBT_SHELLLOGGEDON = 0x0020 + DBT_CONFIGMGAPI32 = 0x0022 + DBT_VXDINITCOMPLETE = 0x0023 + DBT_VOLLOCKQUERYLOCK = 0x8041 + DBT_VOLLOCKLOCKTAKEN = 0x8042 + DBT_VOLLOCKLOCKFAILED = 0x8043 + DBT_VOLLOCKQUERYUNLOCK = 0x8044 + DBT_VOLLOCKLOCKRELEASED = 0x8045 + DBT_VOLLOCKUNLOCKFAILED = 0x8046 + LOCKP_ALLOW_WRITES = 0x01 + LOCKP_FAIL_WRITES = 0x00 + LOCKP_FAIL_MEM_MAPPING = 0x02 + LOCKP_ALLOW_MEM_MAPPING = 0x00 + LOCKP_USER_MASK = 0x03 + LOCKP_LOCK_FOR_FORMAT = 0x04 + LOCKF_LOGICAL_LOCK = 0x00 + LOCKF_PHYSICAL_LOCK = 0x01 + DBT_NO_DISK_SPACE = 0x0047 + DBT_LOW_DISK_SPACE = 0x0048 + DBT_CONFIGMGPRIVATE = 0x7FFF + DBT_DEVICEARRIVAL = 0x8000 + DBT_DEVICEQUERYREMOVE = 0x8001 + DBT_DEVICEQUERYREMOVEFAILED = 0x8002 + DBT_DEVICEREMOVEPENDING = 0x8003 + DBT_DEVICEREMOVECOMPLETE = 0x8004 + DBT_DEVICETYPESPECIFIC = 0x8005 + DBT_CUSTOMEVENT = 0x8006 + DBT_DEVTYP_OEM = 0x00000000 + DBT_DEVTYP_DEVNODE = 0x00000001 + DBT_DEVTYP_VOLUME = 0x00000002 + DBT_DEVTYP_PORT = 0x00000003 + DBT_DEVTYP_NET = 0x00000004 + DBT_DEVTYP_DEVICEINTERFACE = 0x00000005 + DBT_DEVTYP_HANDLE = 0x00000006 + DBTF_MEDIA = 0x0001 + DBTF_NET = 0x0002 + DBTF_RESOURCE = 0x00000001 + DBTF_XPORT = 0x00000002 + DBTF_SLOWNET = 0x00000004 + DBT_VPOWERDAPI = 0x8100 + DBT_USERDEFINED = 0xFFFF |