21 lines
864 B
C#
21 lines
864 B
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.CONNECTDATA" /> instead.</summary>
|
|
// Token: 0x020002F6 RID: 758
|
|
[Obsolete]
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|
public struct CONNECTDATA
|
|
{
|
|
/// <summary>Represents a pointer to the IUnknown interface on a connected advisory sink. The caller must call IUnknown::Release on this pointer when the CONNECTDATA structure is no longer needed.</summary>
|
|
// Token: 0x04000CD4 RID: 3284
|
|
[MarshalAs(UnmanagedType.Interface)]
|
|
public object pUnk;
|
|
|
|
/// <summary>Represents a connection token that is returned from a call to <see cref="M:System.Runtime.InteropServices.UCOMIConnectionPoint.Advise(System.Object,System.Int32@)" />.</summary>
|
|
// Token: 0x04000CD5 RID: 3285
|
|
public int dwCookie;
|
|
}
|
|
}
|