isle-portable/LEGO1/mxresult.h

9 lines
159 B
C
Raw Normal View History

2023-05-05 05:54:17 -04:00
#ifndef MXRESULT_H
#define MXRESULT_H
2023-04-27 22:19:39 -04:00
typedef unsigned long MxResult;
const MxResult SUCCESS = 0;
const MxResult FAILURE = 0xFFFFFFFFL;
2023-05-05 05:54:17 -04:00
#endif // MXRESULT_H