| 42 | ("dwExtraInfo", PUL)] |
| 43 | |
| 44 | class Input_I(ctypes.Union): |
| 45 | _fields_ = [("ki", KeyBdInput), |
| 46 | ("mi", MouseInput), |
| 47 | ("hi", HardwareInput)] |
| 48 | |
| 49 | class Input(ctypes.Structure): |
| 50 | _fields_ = [("type", ctypes.c_ulong), |
no outgoing calls
no test coverage detected