| 69 | } |
| 70 | |
| 71 | HMODULE DpiUtil::GetShcoreModule() |
| 72 | { |
| 73 | static HMODULE shcoreModule = nullptr; |
| 74 | if (shcoreModule == nullptr) |
| 75 | { |
| 76 | shcoreModule = LoadLibraryA("Shcore.dll"); |
| 77 | } |
| 78 | return shcoreModule; |
| 79 | } |
| 80 | |
| 81 | PROCESS_DPI_AWARENESS DpiUtil::ProcessDpiAwarenessFromDpiAwarenessContext( |
| 82 | DPI_AWARENESS_CONTEXT dpiAwarenessContext) |
nothing calls this directly
no outgoing calls
no test coverage detected