mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00
9 lines
156 B
C
9 lines
156 B
C
#ifndef MX_DEFINE
|
|
#define MX_DEFINE
|
|
|
|
typedef unsigned long MxResult;
|
|
const MxResult SUCCESS = 0;
|
|
const MxResult FAILURE = 0xFFFFFFFFL;
|
|
|
|
#endif // MX_DEFINE
|