using System;
namespace System.Runtime.InteropServices
{
/// Use instead.
// Token: 0x02000308 RID: 776
[Obsolete]
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct DISPPARAMS
{
/// Represents a reference to the array of arguments.
// Token: 0x04000D01 RID: 3329
public IntPtr rgvarg;
/// Represents the dispatch IDs of named arguments.
// Token: 0x04000D02 RID: 3330
public IntPtr rgdispidNamedArgs;
/// Represents the count of arguments.
// Token: 0x04000D03 RID: 3331
public int cArgs;
/// Represents the count of named arguments
// Token: 0x04000D04 RID: 3332
public int cNamedArgs;
}
}