mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
8 lines
159 B
C
8 lines
159 B
C
#ifndef MXRESULT_H
|
|
#define MXRESULT_H
|
|
|
|
typedef unsigned long MxResult;
|
|
const MxResult SUCCESS = 0;
|
|
const MxResult FAILURE = 0xFFFFFFFFL;
|
|
|
|
#endif // MXRESULT_H
|