This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: win32con missing codes VK_VOLUME_MUTE, VK_BROWSER_BACK, ...
Type: Stage:
Components: Windows Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: jeffconnelly, loewis
Priority: normal Keywords:

Created on 2004-11-16 06:15 by jeffconnelly, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg23165 - (view) Author: Jeff Connelly aka shellreef (jeffconnelly) Date: 2004-11-16 06:15
win32con is missing many virtual keycode constants:

# from WinUser.h
win32con.MOUSEEVENTF_XDOWN = 0x0080
win32con.MOUSEEVENTF_XUP = 0x0100
win32con.MOUSEEVENTF_WHEEL = 0x0800
win32con.VK_XBUTTON1 = 0x05
win32con.VK_XBUTTON2 = 0x06
win32con.VK_VOLUME_MUTE = 0xAD
win32con.VK_VOLUME_DOWN = 0xAE
win32con.VK_VOLUME_UP = 0xAF
win32con.VK_MEDIA_NEXT_TRACK = 0xB0
win32con.VK_MEDIA_PREV_TRACK = 0xB1
win32con.VK_MEDIA_PLAY_PAUSE = 0xB3
win32con.VK_BROWSER_BACK = 0xA6
win32con.VK_BROWSER_FORWARD = 0xA7

msg23166 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-12-05 19:53
Logged In: YES 
user_id=21627

win32con is not supported in the Python project. Please
report this to

https://sourceforge.net/projects/pywin32/
History
Date User Action Args
2022-04-11 14:56:08adminsetgithub: 41178
2004-11-16 06:15:52jeffconnellycreate