mirror of https://github.com/nmlgc/ReC98.git
13 lines
355 B
PHP
13 lines
355 B
PHP
|
; MSC names for file attributes
|
||
|
_A_NORMAL equ 00h ; Normal file, no attributes
|
||
|
_A_RDONLY equ 01h ; Read only attribute
|
||
|
_A_HIDDEN equ 02h ; Hidden file
|
||
|
_A_SYSTEM equ 04h ; System file
|
||
|
_A_VOLID equ 08h ; Volume label
|
||
|
_A_SUBDIR equ 10h ; Directory
|
||
|
_A_ARCH equ 20h ; Archive
|
||
|
|
||
|
SEEK_CUR equ 1
|
||
|
SEEK_END equ 2
|
||
|
SEEK_SET equ 0
|