| 26 | |
| 27 | static inline CppInt32__ make(int a,int b) { return CppInt32__( (a<<16) | b ); } |
| 28 | static inline CppInt32__ ofInt(int a) { return CppInt32__( a ); } |
| 29 | static inline int toInt(CppInt32__ a) { __hxcpp_check_overflow(a); return a.mValue; } |
| 30 | static inline int toNativeInt(CppInt32__ a) { return a.mValue; } |
| 31 | static inline CppInt32__ add(CppInt32__ a,CppInt32__ b) { return CppInt32__( a.mValue + b.mValue ); } |