mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
14 lines
264 B
C#
14 lines
264 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WindowsDisplayAPI.Native.DeviceContext
|
|
{
|
|
internal enum MonitorFromFlag : uint
|
|
{
|
|
DefaultToNull = 0,
|
|
DefaultToPrimary = 1,
|
|
DefaultToNearest = 2,
|
|
}
|
|
}
|