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