mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
18 lines
306 B
C#
18 lines
306 B
C#
using System;
|
|
|
|
namespace WindowsDisplayAPI.Native.DeviceContext
|
|
{
|
|
[Flags]
|
|
internal enum ChangeDisplaySettingsFlags : uint
|
|
{
|
|
UpdateRegistry = 0x00000001,
|
|
|
|
Global = 0x00000008,
|
|
|
|
SetPrimary = 0x00000010,
|
|
|
|
Reset = 0x40000000,
|
|
|
|
NoReset = 0x10000000
|
|
}
|
|
} |