2003-08-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / FUNCFLAGS.cs
1 //
2 // System.Runtime.InteropServices.FUNCFLAGS.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7
8 using System;
9
10 namespace System.Runtime.InteropServices
11 {
12         [Flags, ComVisible (false)]
13         public enum FUNCFLAGS
14         {
15                 FUNCFLAG_FRESTRICTED = 1,
16                 FUNCFLAG_FSOURCE = 2,
17                 FUNCFLAG_FBINDABLE = 4,
18                 FUNCFLAG_FREQUESTEDIT = 8,
19                 FUNCFLAG_FDISPLAYBIND = 16,
20                 FUNCFLAG_FDEFAULTBIND = 32,
21                 FUNCFLAG_FHIDDEN = 64,
22                 FUNCFLAG_FUSESGETLASTERROR = 128,
23                 FUNCFLAG_FDEFAULTCOLLELEM = 256,
24                 FUNCFLAG_FUIDEFAULT = 512,
25                 FUNCFLAG_FNONBROWSABLE = 1024,
26                 FUNCFLAG_FREPLACEABLE = 2048,
27                 FUNCFLAG_FIMMEDIATEBIND = 4096
28         }
29 }