using System;
namespace System.Runtime.InteropServices
{
/// Use instead.
// Token: 0x02000331 RID: 817
[Obsolete]
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct PARAMDESC
{
/// Represents a pointer to a value that is being passed between processes.
// Token: 0x04000D6F RID: 3439
public IntPtr lpVarValue;
/// Represents bitmask values that describe the structure element, parameter, or return value.
// Token: 0x04000D70 RID: 3440
public PARAMFLAG wParamFlags;
}
}