mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
11 lines
174 B
C#
11 lines
174 B
C#
using System;
|
|
|
|
namespace WindowsDisplayAPI.Native.DeviceContext
|
|
{
|
|
[Flags]
|
|
internal enum MonitorInfoFlags : uint
|
|
{
|
|
None = 0,
|
|
Primary = 1
|
|
}
|
|
} |