1
0
Fork 0
mirror of https://github.com/isledecomp/isle.git synced 2025-05-17 08:11:52 -04:00
isle/lib/define.h

9 lines
156 B
C
Raw Normal View History

2023-04-27 19:19:39 -07:00
#ifndef MX_DEFINE
#define MX_DEFINE
typedef unsigned long MxResult;
const MxResult SUCCESS = 0;
const MxResult FAILURE = 0xFFFFFFFFL;
#endif // MX_DEFINE