#ifndef HITYPES_H_ #define HITYPES_H_ typedef enum { HI_FAIL = 0, HI_OK } HiResult; #define HIOK(res) ((res) == HI_OK) #endif // HITYPES_H_