29 lines
963 B
C#
29 lines
963 B
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.IDLFLAG" /> instead. </summary>
|
|
// Token: 0x0200031D RID: 797
|
|
[Flags]
|
|
[Obsolete]
|
|
[Serializable]
|
|
public enum IDLFLAG
|
|
{
|
|
/// <summary>Whether the parameter passes or receives information is unspecified.</summary>
|
|
// Token: 0x04000D46 RID: 3398
|
|
IDLFLAG_NONE = 0,
|
|
/// <summary>The parameter passes information from the caller to the callee.</summary>
|
|
// Token: 0x04000D47 RID: 3399
|
|
IDLFLAG_FIN = 1,
|
|
/// <summary>The parameter returns information from the callee to the caller.</summary>
|
|
// Token: 0x04000D48 RID: 3400
|
|
IDLFLAG_FOUT = 2,
|
|
/// <summary>The parameter is the local identifier of a client application.</summary>
|
|
// Token: 0x04000D49 RID: 3401
|
|
IDLFLAG_FLCID = 4,
|
|
/// <summary>The parameter is the return value of the member.</summary>
|
|
// Token: 0x04000D4A RID: 3402
|
|
IDLFLAG_FRETVAL = 8
|
|
}
|
|
}
|