scripts
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
|
||||
namespace System.Runtime.InteropServices
|
||||
{
|
||||
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.ELEMDESC" /> instead.</summary>
|
||||
// Token: 0x0200030B RID: 779
|
||||
[Obsolete]
|
||||
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
||||
public struct ELEMDESC
|
||||
{
|
||||
/// <summary>Identifies the type of the element.</summary>
|
||||
// Token: 0x04000D07 RID: 3335
|
||||
public TYPEDESC tdesc;
|
||||
|
||||
/// <summary>Contains information about an element.</summary>
|
||||
// Token: 0x04000D08 RID: 3336
|
||||
public ELEMDESC.DESCUNION desc;
|
||||
|
||||
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION" /> instead.</summary>
|
||||
// Token: 0x0200030C RID: 780
|
||||
[ComVisible(false)]
|
||||
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Unicode)]
|
||||
public struct DESCUNION
|
||||
{
|
||||
/// <summary>Contains information for remoting the element.</summary>
|
||||
// Token: 0x04000D09 RID: 3337
|
||||
[FieldOffset(0)]
|
||||
public IDLDESC idldesc;
|
||||
|
||||
/// <summary>Contains information about the parameter.</summary>
|
||||
// Token: 0x04000D0A RID: 3338
|
||||
[FieldOffset(0)]
|
||||
public PARAMDESC paramdesc;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user