mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
15 lines
299 B
C#
15 lines
299 B
C#
using System;
|
|
|
|
namespace WindowsDisplayAPI.Native.DisplayConfig
|
|
{
|
|
[Flags]
|
|
internal enum DisplayConfigPathTargetInfoFlags : uint
|
|
{
|
|
None = 0,
|
|
InUse = 1,
|
|
Forcible = 2,
|
|
AvailabilityBoot = 3,
|
|
AvailabilityPath = 4,
|
|
AvailabilitySystem = 5
|
|
}
|
|
} |