1 2 3 4 5 6 7 8 9 10 11 12 13
#ifdef _WIN32 #include "app.hpp" #include <windows.h> namespace floormat { void app::set_dpi_aware() { SetProcessDPIAware(); } } // namespace floormat #endif