mirror of https://github.com/mgba-emu/mgba.git
Util: Add UIntList predefined vector
This commit is contained in:
parent
ecfdff2338
commit
84dd69ff86
|
@ -112,6 +112,7 @@ CXX_GUARD_START
|
||||||
} \
|
} \
|
||||||
|
|
||||||
DECLARE_VECTOR(IntList, int);
|
DECLARE_VECTOR(IntList, int);
|
||||||
|
DECLARE_VECTOR(UIntList, unsigned);
|
||||||
DECLARE_VECTOR(SInt8List, int8_t);
|
DECLARE_VECTOR(SInt8List, int8_t);
|
||||||
DECLARE_VECTOR(SInt16List, int16_t);
|
DECLARE_VECTOR(SInt16List, int16_t);
|
||||||
DECLARE_VECTOR(SInt32List, int32_t);
|
DECLARE_VECTOR(SInt32List, int32_t);
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
#include <mgba-util/vector.h>
|
#include <mgba-util/vector.h>
|
||||||
|
|
||||||
DEFINE_VECTOR(IntList, int);
|
DEFINE_VECTOR(IntList, int);
|
||||||
|
DEFINE_VECTOR(UIntList, unsigned);
|
||||||
DEFINE_VECTOR(SInt8List, int8_t);
|
DEFINE_VECTOR(SInt8List, int8_t);
|
||||||
DEFINE_VECTOR(SInt16List, int16_t);
|
DEFINE_VECTOR(SInt16List, int16_t);
|
||||||
DEFINE_VECTOR(SInt32List, int32_t);
|
DEFINE_VECTOR(SInt32List, int32_t);
|
||||||
|
|
Loading…
Reference in New Issue