28 lines
822 B
C#
28 lines
822 B
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.DISPPARAMS" /> instead.</summary>
|
|
// Token: 0x02000308 RID: 776
|
|
[Obsolete]
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|
public struct DISPPARAMS
|
|
{
|
|
/// <summary>Represents a reference to the array of arguments.</summary>
|
|
// Token: 0x04000D01 RID: 3329
|
|
public IntPtr rgvarg;
|
|
|
|
/// <summary>Represents the dispatch IDs of named arguments.</summary>
|
|
// Token: 0x04000D02 RID: 3330
|
|
public IntPtr rgdispidNamedArgs;
|
|
|
|
/// <summary>Represents the count of arguments.</summary>
|
|
// Token: 0x04000D03 RID: 3331
|
|
public int cArgs;
|
|
|
|
/// <summary>Represents the count of named arguments </summary>
|
|
// Token: 0x04000D04 RID: 3332
|
|
public int cNamedArgs;
|
|
}
|
|
}
|