home *** CD-ROM | disk | FTP | other *** search
- CONSTANTS
- /* File Attributes */
- fa_rdonly = $01 /* Read only file */
- fa_hidden = $02 /* Hidden file */
- fa_system = $04 /* System file */
- fa_subdir = $10 /* Subdirectory */
- fa_arch = $20 /* Archive file */
- fa_normal = $40 /* Normal file - No read/write restrictions */
-
-
- /* File usage Modes */
- fm_access_wo = $0001 /* write only */
- fm_access_rw = $0002 /* read/write */
- fm_access_ro = $0004 /* read only */
- fm_sh_denyrw = $0010 /* deny read/write mode */
- fm_sh_denywr = $0020 /* deny write mode */
- fm_sh_denyrd = $0030 /* deny read mode */
- fm_sh_denyno = $0040 /* deny none mode */
-
- /* Exclusively for OS2 and DOS >= 4.0 */
- fm_returnerr = $2000 /* return error rather than call crit hand. */
- fm_writethru = $4000 /* write through */
-
-
- /* Creation Flags */
-
- /* Actions if file exists (low nibble) : */
- cr_ex_fail = $00
- cr_ex_open = $01
- cr_ex_replace = $02
-
- /* Actions if file doesn't exist (high nibble): */
- cr_noex_fail = $00
- cr_noex_create = $10
-