Files
hiload/include/hitypes.h
Kasper 5539596929 Type and naming cleanup
Do not use Hi prefic for things that shouldn't be visible to outside code
2025-05-02 00:15:51 +03:00

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_