10 lines
144 B
C
10 lines
144 B
C
#ifndef HITYPES_H_
|
|
#define HITYPES_H_
|
|
|
|
typedef enum { HI_FAIL = 0, HI_OK } HiResult;
|
|
|
|
#define HIOK(res) ((res) == HI_OK)
|
|
|
|
|
|
#endif // HITYPES_H_
|