| 83 | } |
| 84 | |
| 85 | void __cdecl MouseLeftButtonUp() |
| 86 | { |
| 87 | MOUSE_INPUT_DATA mid; |
| 88 | DWORD dwOutput; |
| 89 | memset(&mid, 0, sizeof(MOUSE_INPUT_DATA)); |
| 90 | mid.ButtonFlags = MOUSE_LEFT_BUTTON_UP; |
| 91 | DeviceIoControl(drvhandle, IOCTL_MOUSE, &mid, sizeof(MOUSE_INPUT_DATA), NULL, 0, &dwOutput, NULL); |
| 92 | } |
| 93 | void __cdecl MouseRightButtonDown() |
| 94 | { |
| 95 | MOUSE_INPUT_DATA mid; |
nothing calls this directly
no outgoing calls
no test coverage detected