SilentPatch/SilentPatch/FriendlyMonitorNames.h
Silent 15f9f08052
SA: Remake the monitor/resolution selection dialog
* Uses Common Controls 6 (modern styling)
* Lists friendly monitor names
* Acts correctly on pressing Escape
* Doesn't bug out when an inexistent adapter is selected
* Remembers the selected adapter
* Gives an option to skip the dialog and remember the choice
* Shows in the taskbar correctly
* Explicitly asks the system to scale for DPI, overriding compat options
2024-08-17 00:11:54 +02:00

9 lines
158 B
C++

#pragma once
#include <map>
#include <string>
namespace FriendlyMonitorNames
{
std::map<std::string, std::string, std::less<>> GetNamesForDevicePaths();
}