| 461 | } |
| 462 | |
| 463 | static void GetMousePos(LPARAM lParam) |
| 464 | { |
| 465 | MouseX = (short)(lParam & 0xffff); |
| 466 | MouseY = (short)((lParam >> 16) & 0xffff); |
| 467 | } |
| 468 | |
| 469 | LRESULT DisableInputWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) |
| 470 | { |
no outgoing calls
no test coverage detected