This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,19 @@
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;
}
}