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,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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user