Gamma Init

This commit is contained in:
Serge
2024-02-16 15:55:37 +01:00
parent 42a598f177
commit cf84fa0616
103 changed files with 7907 additions and 41 deletions

View File

@@ -0,0 +1,37 @@
using System;
namespace WindowsDisplayAPI.Native.DisplayConfig
{
/// <summary>
/// Possible topology identifications
/// https://msdn.microsoft.com/en-us/library/windows/hardware/ff554001(v=vs.85).aspx
/// </summary>
[Flags]
public enum DisplayConfigTopologyId : uint
{
/// <summary>
/// Invalid topology identification
/// </summary>
None = 0,
/// <summary>
/// Indicates that the display topology is an internal configuration.
/// </summary>
Internal = 0x00000001,
/// <summary>
/// Indicates that the display topology is clone-view configuration.
/// </summary>
Clone = 0x00000002,
/// <summary>
/// Indicates that the display topology is an extended configuration.
/// </summary>
Extend = 0x00000004,
/// <summary>
/// Indicates that the display topology is an external configuration.
/// </summary>
External = 0x00000008
}
}