/* define DataBase record definition. */ typedef struct { Char symbol[16]; Char desc[32]; Char value[32]; } ConstDBType; typedef struct { Char title[32]; Char code[1]; } ProgramDBType; void AddConstRecord(UInt, CharPtr, CharPtr, CharPtr); void ReadConstRecord(UInt, ConstDBType*); Err ModifyConstRecord(UInt, CharPtr, CharPtr, CharPtr); void ReadProgramTitle(UInt, CharPtr); void ReadProgramCode(UInt, CharPtr); void AddProgramRecord(UInt, CharPtr, CharPtr); Err ModifyProgramRecord(UInt, CharPtr, CharPtr);