From bbea82ab84707580196144d62147f18724f23db1 Mon Sep 17 00:00:00 2001 From: David Hall Date: Mon, 29 Jan 2018 17:56:33 -0700 Subject: [PATCH] Made INTLIST public --- PInvoke/UxTheme/UXTHEME.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/PInvoke/UxTheme/UXTHEME.cs b/PInvoke/UxTheme/UXTHEME.cs index 76d6b34e..4cf64f3c 100644 --- a/PInvoke/UxTheme/UXTHEME.cs +++ b/PInvoke/UxTheme/UXTHEME.cs @@ -1600,6 +1600,15 @@ namespace Vanara.PInvoke public int cyBottomHeight; } + [StructLayout(LayoutKind.Sequential)] + public struct INTLIST + { + public int iValueCount; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 402)] + public int[] iValues; + } + [StructLayout(LayoutKind.Sequential)] public struct TA_TIMINGFUNCTION { @@ -1625,15 +1634,6 @@ namespace Vanara.PInvoke public int Mask; } - [StructLayout(LayoutKind.Sequential)] - private struct INTLIST - { - public int iValueCount; - - [MarshalAs(UnmanagedType.ByValArray, SizeConst = 402)] - public int[] iValues; - } - [StructLayout(LayoutKind.Sequential)] private struct INTLIST_OLD {