awips2/nativeLib/rary.ohd.calb/inc/common/unitno.h
root 06a8b51d6d Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 64fa9254b946eae7e61bbc3f513b7c3696c4f54f
2012-01-06 08:55:05 -06:00

26 lines
1.2 KiB
C

/*-----------------------------------------------------------------------------
** unitno.h - flags used to handle unit numbers for NWSRFS
**-----------------------------------------------------------------------------
** notes: (1) These flags are used by routines that set or check
** file status, such as:
**
** isda
** isres
** isseq
** isused (calls "isda" and "isseq")
**
** setda
** setres
** setseq
**
**-----------------------------------------------------------------------------
** history:
**
** 1.0 (9-17-93) Steven A. Malers, RTi Created file.
**-----------------------------------------------------------------------------
*/
#define NWSRFS_FILE_UNUSED 0x0 /* file is not used */
#define NWSRFS_FILE_DAIO 0x1 /* file is direct access */
#define NWSRFS_FILE_SEQUENTIAL 0x2 /* file is sequential access */
#define NWSRFS_FILE_RESERVED 0x4 /* file is reserved for use */