anonymous enum [inherited]

File modes.

Enumerator:
OtherRead  Permissions.
OtherWrite  Others have read permission.
OtherExec  Others have write permisson.
OtherReadWrite  Others have execute permission.
OtherFull  Others have read and write permission.
GroupRead  Others have full access.
GroupWrite  Group has read permission.
GroupExec  Group has write permission.
GroupReadWrite  Group has execute permission.
GroupFull  Group has read and write permission.
OwnerRead  Group has full access.
OwnerWrite  Owner has read permission.
OwnerExec  Owner has write permission.
OwnerReadWrite  Owner has execute permission.
OwnerFull  Owner has read and write permission.
Hidden  Other flags.
Directory  Hidden file.
File  Is directory.
SymLink  Is regular file.
SetUser  Special mode bits.
SetGroup  Set user id.
Sticky  Set group id.
Character  Device special files.
Block  Character device.
Socket  Block device.
Fifo  Socket device.

Definition at line 47 of file FXIO.h.

00047        {
00048 
00050     OtherRead      = 0x00004,   
00051     OtherWrite     = 0x00002,   
00052     OtherExec      = 0x00001,   
00053     OtherReadWrite = 0x00006,   
00054     OtherFull      = 0x00007,   
00055 
00056     GroupRead      = 0x00020,   
00057     GroupWrite     = 0x00010,   
00058     GroupExec      = 0x00008,   
00059     GroupReadWrite = 0x00030,   
00060     GroupFull      = 0x00038,   
00061 
00062     OwnerRead      = 0x00100,   
00063     OwnerWrite     = 0x00080,   
00064     OwnerExec      = 0x00040,   
00065     OwnerReadWrite = 0x00180,   
00066     OwnerFull      = 0x001C0,   
00067 
00069     Hidden         = 0x00200,   
00070     Directory      = 0x00400,   
00071     File           = 0x00800,   
00072     SymLink        = 0x01000,   
00073 
00075     SetUser        = 0x02000,   
00076     SetGroup       = 0x04000,   
00077     Sticky         = 0x08000,   
00078 
00080     Character      = 0x10000,   
00081     Block          = 0x20000,   
00082     Socket         = 0x40000,   
00083     Fifo           = 0x80000    
00084     };


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:36:21 2009 for TnFOX by doxygen v1.4.7