How can I change a code from Structured Data Type to Abstract Data Type ?


typedef enum Bool{false = 0, true = 1} TBool;
typedef enum Color{red, blue, yellow, green, violet, orange} TColor; ...