/* @(#)DbMesgs.h 1.2 97/12/23 SwRI DbMesgs.h */ #ifndef DbMesgs_h #define DbMesgs_h #include "DbDefs.h" /* | || include file for messages from error/message numbers | */ struct db_messages { int mesg_no; /* error/message number */ char message[50]; /* message */ } db_mesg[] = { { NO_DATA, "NO DATA AVAILABLE" }, { CONFIG_FILE_ERROR, "CONFIG FILE ERROR" }, { DBF_OPEN_ERROR, "CANNOT OPEN DATABASE" }, { DBF_READ_ERROR, "CANNOT READ DATABASE" } }; #endif