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