/* * * Erase type definitions */ #ifndef _ERADEF_H #define _ERADEF_H /* The codes LODUMMY and HIDUMMY are used as placeholders, to make the definition of the upper and lower bound erase type symbols automatic. */ /* Define erase type codes. */ #define ERA$K_LODUMMY 0 #define ERA$K_MEMORY 1 /* Erase main memory */ #define ERA$K_DISK 2 /* Erase disk mass storage */ #define ERA$K_TAPE 3 /* Erase magnetic tape mass storage */ #define ERA$K_HIDUMMY 4 #define ERA$K_MINTYPE 1 /* Lower bound of erase type codes */ #define ERA$K_MAXTYPE 3 /* Upper bound of erase type codes */ #endif /*_ERADEF_H*/