| 1606 | } |
| 1607 | |
| 1608 | LRESULT CALLBACK MessageInput::RawInputWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) |
| 1609 | { |
| 1610 | if (msg != WM_INPUT) { |
| 1611 | return DefWindowProcW(hwnd, msg, wParam, lParam); |
| 1612 | } |
| 1613 | |
| 1614 | auto* inst = s_active_instance_.load(); |
| 1615 | if (!inst) { |
| 1616 | return DefWindowProcW(hwnd, msg, wParam, lParam); |
| 1617 | } |
| 1618 | |
| 1619 | inst->handle_rawinput_message(lParam); |
| 1620 | return DefWindowProcW(hwnd, msg, wParam, lParam); |
| 1621 | } |
| 1622 | |
| 1623 | MAA_CTRL_UNIT_NS_END |
nothing calls this directly
no test coverage detected