Skip to content

Commit

Permalink
Fixed DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY enum #423
Browse files Browse the repository at this point in the history
  • Loading branch information
dahall committed Sep 8, 2023
1 parent da04510 commit 9576f99
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion PInvoke/Gdi32/WinGdi.Display.cs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ public enum DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY : uint
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_LVDS,

/// <summary>Indicates a Japanese D connector.</summary>
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_D_JPN,
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_D_JPN = 8,

/// <summary>Indicates an SDI connector.</summary>
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDI,
Expand Down Expand Up @@ -446,6 +446,12 @@ public enum DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY : uint
/// laptop computer).
/// </summary>
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INTERNAL = 0x80000000,

/// <summary>
/// Forces this enumeration to compile to 32 bits in size. Without this value, some compilers would allow this enumeration to
/// compile to a size other than 32 bits. You should not use this value.
/// </summary>
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_FORCE_UINT32 = 0xFFFFFFFF
}

/// <summary>The DISPLAYCONFIG_2DREGION structure represents a point or an offset in a two-dimensional space.</summary>
Expand Down

0 comments on commit 9576f99

Please sign in to comment.