| 230 | } |
| 231 | |
| 232 | inline std::pair<DWORD, DWORD> thread_process_id() const noexcept |
| 233 | { |
| 234 | std::pair<DWORD, DWORD> pair { }; |
| 235 | pair.first = GetWindowThreadProcessId(m_WindowHandle, &pair.second); |
| 236 | return pair; |
| 237 | } |
| 238 | |
| 239 | inline std::optional<RECT> rect() const |
| 240 | { |
nothing calls this directly
no outgoing calls
no test coverage detected