mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
13 lines
263 B
C#
13 lines
263 B
C#
using System;
|
|
|
|
namespace WindowsDisplayAPI.Native.DisplayConfig
|
|
{
|
|
[Flags]
|
|
internal enum DisplayConfigTargetDeviceNameFlags : uint
|
|
{
|
|
None = 0,
|
|
FriendlyNameFromEDID = 1,
|
|
FriendlyNameForced = 2,
|
|
EDIDIdsValid = 4
|
|
}
|
|
} |