mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2025-01-07 19:53:01 +05:00
15f9f08052
* 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
9 lines
158 B
C++
9 lines
158 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
namespace FriendlyMonitorNames
|
|
{
|
|
std::map<std::string, std::string, std::less<>> GetNamesForDevicePaths();
|
|
}
|