Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pydirectinput/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,10 @@
'right': MapVirtualKey(0x27, MAPVK_VK_TO_VSC),
}

# C struct redefinitions
for c in range(32, 92):
KEYBOARD_MAPPING[chr(c).lower()] = MapVirtualKey(c, MAPVK_VK_TO_VSC)

# C struct redefinitions
PUL = ctypes.POINTER(ctypes.c_ulong)


Expand Down