mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
8 lines
156 B
C
8 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
|