mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Gamma Init
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
|
||||
namespace WindowsDisplayAPI.Native.DisplayConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// Possible values for QueryDisplayConfig() flags property
|
||||
/// https://msdn.microsoft.com/en-us/library/windows/hardware/ff569215(v=vs.85).aspx
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum QueryDeviceConfigFlags : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// All the possible path combinations of sources to targets.
|
||||
/// </summary>
|
||||
AllPaths = 0x00000001,
|
||||
|
||||
/// <summary>
|
||||
/// Currently active paths only.
|
||||
/// </summary>
|
||||
OnlyActivePaths = 0x00000002,
|
||||
|
||||
/// <summary>
|
||||
/// Active path as defined in the CCD database for the currently connected displays.
|
||||
/// </summary>
|
||||
DatabaseCurrent = 0x00000004,
|
||||
|
||||
/// <summary>
|
||||
/// Virtual Mode Aware
|
||||
/// </summary>
|
||||
VirtualModeAware = 0x0000010
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user