/* * dbstruct.ch — DBS_xxx field descriptor indices * * Mirrors Harbour's include/dbstruct.ch. These index into the * sub-array returned by dbStruct() for each field: * { FIELD_NAME, FIELD_TYPE, FIELD_LEN, FIELD_DEC } */ #ifndef HB_DBSTRUCT_CH_ #define HB_DBSTRUCT_CH_ #define DBS_NAME 1 #define DBS_TYPE 2 #define DBS_LEN 3 #define DBS_DEC 4 /* dbCreate() field descriptor indices — same as DBS_ */ #define DB_FLD_NAME 1 #define DB_FLD_TYPE 2 #define DB_FLD_LEN 3 #define DB_FLD_DEC 4 #endif /* HB_DBSTRUCT_CH_ */