1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using System.Runtime.InteropServices;
6 
7 namespace System.DirectoryServices.Interop
8 {
9     [StructLayout(LayoutKind.Sequential)]
10     internal unsafe struct AdsSearchColumn
11     {
12         public IntPtr pszAttrName;
13         public int/*AdsType*/ dwADsType;
14         public AdsValue* pADsValues;
15         public int dwNumValues;
16         public IntPtr hReserved;
17     }
18 }
19