27 lines
902 B
C#
27 lines
902 B
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.BINDPTR" /> instead.</summary>
|
|
// Token: 0x020002F0 RID: 752
|
|
[Obsolete]
|
|
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Unicode)]
|
|
public struct BINDPTR
|
|
{
|
|
/// <summary>Represents a pointer to a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure.</summary>
|
|
// Token: 0x04000CBF RID: 3263
|
|
[FieldOffset(0)]
|
|
public IntPtr lpfuncdesc;
|
|
|
|
/// <summary>Represents a pointer to a <see cref="F:System.Runtime.InteropServices.BINDPTR.lptcomp" /> interface.</summary>
|
|
// Token: 0x04000CC0 RID: 3264
|
|
[FieldOffset(0)]
|
|
public IntPtr lptcomp;
|
|
|
|
/// <summary>Represents a pointer to a <see cref="T:System.Runtime.InteropServices.VARDESC" /> structure.</summary>
|
|
// Token: 0x04000CC1 RID: 3265
|
|
[FieldOffset(0)]
|
|
public IntPtr lpvardesc;
|
|
}
|
|
}
|