| 17 | # C struct redefinitions |
| 18 | PUL = ctypes.POINTER(ctypes.c_ulong) |
| 19 | class KeyBdInput(ctypes.Structure): |
| 20 | _fields_ = [("wVk", ctypes.c_ushort), |
| 21 | ("wScan", ctypes.c_ushort), |
| 22 | ("dwFlags", ctypes.c_ulong), |
| 23 | ("time", ctypes.c_ulong), |
| 24 | ("dwExtraInfo", PUL)] |
| 25 | |
| 26 | class HardwareInput(ctypes.Structure): |
| 27 | _fields_ = [("uMsg", ctypes.c_ulong), |
no outgoing calls
no test coverage detected