| 87 | } |
| 88 | |
| 89 | LRESULT WndClass::ThunkWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) |
| 90 | { |
| 91 | // retrieve ptr to window instance |
| 92 | auto const pWnd = reinterpret_cast<Window*>(GetWindowLongPtrW(hWnd, GWLP_USERDATA)); |
| 93 | // forward message to window instance handler |
| 94 | return pWnd->HandleMessage(msg, wParam, lParam); |
| 95 | } |
| 96 | } |
nothing calls this directly
no test coverage detected