(self, *inputs)
| 461 | |
| 462 | # send input |
| 463 | def SendInput(self, *inputs): |
| 464 | nInputs = len(inputs) |
| 465 | LPINPUT = INPUT * nInputs |
| 466 | pInputs = LPINPUT(*inputs) |
| 467 | cbSize = ctypes.c_int(ctypes.sizeof(INPUT)) |
| 468 | return ctypes.windll.user32.SendInput(nInputs, pInputs, cbSize) |
| 469 | |
| 470 | # get input object |
| 471 | def Input(self, structure): |
no outgoing calls
no test coverage detected