/* --- VTYPES.H --- Copyright 1993 Trident Robotics and Research, Inc. --- --- Header file defining variable types. --- --- */ #ifndef VTYPES_H #define VTYPES_H #define I_OK 0 #define I_ERROR -1 #define I_BAD_OPTION -2 #define VT_INT 1 #define VT_SHORT 2 #define VT_LONG 3 #define VT_FLOAT 4 #define VT_DOUBLE 5 #define VT_STRING 6 #define VT_HEX 7 #endif