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,37 @@
using System;
namespace System.Runtime.InteropServices
{
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.PARAMFLAG" /> instead.</summary>
// Token: 0x02000332 RID: 818
[Obsolete]
[Flags]
[Serializable]
public enum PARAMFLAG
{
/// <summary>Whether the parameter passes or receives information is unspecified.</summary>
// Token: 0x04000D72 RID: 3442
PARAMFLAG_NONE = 0,
/// <summary>The parameter passes information from the caller to the callee.</summary>
// Token: 0x04000D73 RID: 3443
PARAMFLAG_FIN = 1,
/// <summary>The parameter returns information from the callee to the caller.</summary>
// Token: 0x04000D74 RID: 3444
PARAMFLAG_FOUT = 2,
/// <summary>The parameter is the local identifier of a client application.</summary>
// Token: 0x04000D75 RID: 3445
PARAMFLAG_FLCID = 4,
/// <summary>The parameter is the return value of the member.</summary>
// Token: 0x04000D76 RID: 3446
PARAMFLAG_FRETVAL = 8,
/// <summary>The parameter is optional.</summary>
// Token: 0x04000D77 RID: 3447
PARAMFLAG_FOPT = 16,
/// <summary>The parameter has default behaviors defined.</summary>
// Token: 0x04000D78 RID: 3448
PARAMFLAG_FHASDEFAULT = 32,
/// <summary>The parameter has custom data.</summary>
// Token: 0x04000D79 RID: 3449
PARAMFLAG_FHASCUSTDATA = 64
}
}