Fixed DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY enum #423

pull/436/head
David Hall 2023-09-08 07:29:46 -06:00
parent da04510b0a
commit 9576f99ff8
1 changed files with 7 additions and 1 deletions

View File

@ -410,7 +410,7 @@ namespace Vanara.PInvoke
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,
@ -446,6 +446,12 @@ namespace Vanara.PInvoke
/// 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>