I have an enum and a struct
enum STORE_ENUM { A_DATA, B_DATA, C_DATA, D_DATA }; struct Store { int a; char b; long c; bool d; }
and