mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 19:57:57 +01:00
17 lines
394 B
C++
17 lines
394 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include <projects-common/Data.h>
|
|
|
|
// FancyZones: MonitorUtils.h
|
|
namespace MonitorUtils
|
|
{
|
|
namespace Display
|
|
{
|
|
std::pair<bool, std::vector<Project::Monitor>> GetDisplays();
|
|
std::pair<std::wstring, std::wstring> SplitDisplayDeviceId(const std::wstring& str) noexcept;
|
|
}
|
|
|
|
std::vector<Project::Monitor> IdentifyMonitors() noexcept;
|
|
} |