/* file: plotm.h: */ /*--------------------------------------------------------------*/ /* Error codes returned by plotm (and others.) */ #define OK 0 /* No errors. */ #define NO_FILE 1 /* File not found. */ #define CORRUPT_FILE 2 /* Corrupt plot file. */ #define PART_BLOCK 3 /* Partial block read. */ #define BAD_MAGIC 4 /* Bad magic number for file. */ #define END_FILE 5 /* End of file. */ #define UDEF_COMMAND 6 /* Undefined plot command. */ #define BAD_ARGS 7 /* Bad command line arguments. */ #define DATA_TYPE float /* Type of data arrays. */