Files
Dec2017-Script-Dump/mscorlib/System/Runtime/InteropServices/IDLDESC.cs
T
2026-06-04 11:42:34 +02:00

20 lines
592 B
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.IDLDESC" /> instead.</summary>
// Token: 0x0200031C RID: 796
[Obsolete]
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct IDLDESC
{
/// <summary>Reserved; set to null.</summary>
// Token: 0x04000D43 RID: 3395
public int dwReserved;
/// <summary>Indicates an <see cref="T:System.Runtime.InteropServices.IDLFLAG" /> value describing the type.</summary>
// Token: 0x04000D44 RID: 3396
public IDLFLAG wIDLFlags;
}
}