using System;
namespace System.Runtime.InteropServices
{
/// Use instead.
// Token: 0x020002F0 RID: 752
[Obsolete]
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Unicode)]
public struct BINDPTR
{
/// Represents a pointer to a structure.
// Token: 0x04000CBF RID: 3263
[FieldOffset(0)]
public IntPtr lpfuncdesc;
/// Represents a pointer to a interface.
// Token: 0x04000CC0 RID: 3264
[FieldOffset(0)]
public IntPtr lptcomp;
/// Represents a pointer to a structure.
// Token: 0x04000CC1 RID: 3265
[FieldOffset(0)]
public IntPtr lpvardesc;
}
}