Subversion Repositories Kolibri OS

Rev

Rev 4066 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4066 Rev 4067
Line 488... Line 488...
488
EXT2_S_IFMT          = 0xF000           ; Mask for file type.
488
EXT2_S_IFMT          = 0xF000           ; Mask for file type.
Line 489... Line 489...
489
 
489
 
490
EXT2_S_IFREG         = 0x8000           ; Regular file.
490
EXT2_S_IFREG         = 0x8000           ; Regular file.
Line -... Line 491...
-
 
491
EXT2_S_IFDIR         = 0x4000           ; Directory.
-
 
492
 
-
 
493
EXT2_S_IRUSR         = 0x0100           ; User read
-
 
494
EXT2_S_IWUSR         = 0x0080           ; User write
-
 
495
EXT2_S_IXUSR         = 0x0040           ; User execute
-
 
496
EXT2_S_IRGRP         = 0x0020           ; Group read
-
 
497
EXT2_S_IWGRP         = 0x0010           ; Group write
-
 
498
EXT2_S_IXGRP         = 0x0008           ; Group execute
-
 
499
EXT2_S_IROTH         = 0x0004           ; Others read
-
 
500
EXT2_S_IWOTH         = 0x0002           ; Others write
-
 
501
EXT2_S_IXOTH         = 0x0001           ; Others execute
-
 
502
 
-
 
503
PERMISSIONS          = EXT2_S_IRUSR or EXT2_S_IWUSR \
-
 
504
                       or EXT2_S_IRGRP or EXT2_S_IWGRP \
491
EXT2_S_IFDIR         = 0x4000           ; Directory.
505
                       or EXT2_S_IROTH or EXT2_S_IWOTH
492
 
506
 
493
; File type defining values in directory entry.
507
; File type defining values in directory entry.
Line 494... Line 508...
494
EXT2_FT_REG_FILE     = 1                ; Regular file.
508
EXT2_FT_REG_FILE     = 1                ; Regular file.