| 42 | } |
| 43 | |
| 44 | UINT DpiCompatibility::GetDpiForWindow(HWND hwnd) |
| 45 | { |
| 46 | if (m_GetDpiForWindow) |
| 47 | { |
| 48 | return m_GetDpiForWindow(hwnd); |
| 49 | } |
| 50 | |
| 51 | auto hdc = wil::GetDC(hwnd); |
| 52 | |
| 53 | if (hdc) |
| 54 | { |
| 55 | return GetDeviceCaps(hdc.get(), LOGPIXELSX); |
| 56 | } |
| 57 | |
| 58 | return USER_DEFAULT_SCREEN_DPI; |
| 59 | } |
no test coverage detected