diff --git a/PInvoke/Gdi32/WinGdi.Display.cs b/PInvoke/Gdi32/WinGdi.Display.cs
index 098f1ab28..e20820192 100644
--- a/PInvoke/Gdi32/WinGdi.Display.cs
+++ b/PInvoke/Gdi32/WinGdi.Display.cs
@@ -410,7 +410,7 @@ public enum DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY : uint
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_LVDS,
/// Indicates a Japanese D connector.
- DISPLAYCONFIG_OUTPUT_TECHNOLOGY_D_JPN,
+ DISPLAYCONFIG_OUTPUT_TECHNOLOGY_D_JPN = 8,
/// Indicates an SDI connector.
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDI,
@@ -446,6 +446,12 @@ public enum DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY : uint
/// laptop computer).
///
DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INTERNAL = 0x80000000,
+
+ ///
+ /// 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.
+ ///
+ DISPLAYCONFIG_OUTPUT_TECHNOLOGY_FORCE_UINT32 = 0xFFFFFFFF
}
/// The DISPLAYCONFIG_2DREGION structure represents a point or an offset in a two-dimensional space.