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