| 199 | #endif |
| 200 | |
| 201 | void WindowSystem::Extract(LPARAM lParam, int32_t& x, int32_t& y) |
| 202 | { |
| 203 | x = static_cast<int32_t>(static_cast<int16_t>(lParam & 0xFFFF)); |
| 204 | y = static_cast<int32_t>(static_cast<int16_t>((lParam & 0xFFFF0000) >> 16)); |
| 205 | } |
| 206 | |
| 207 | void WindowSystem::Extract(WPARAM wParam, int32_t& x, int32_t& y) |
| 208 | { |
no outgoing calls