Util: Add UIntList predefined vector

This commit is contained in:
Vicki Pfau 2024-08-25 02:32:04 -07:00
parent ecfdff2338
commit 84dd69ff86
2 changed files with 2 additions and 0 deletions

View File

@ -112,6 +112,7 @@ CXX_GUARD_START
} \
DECLARE_VECTOR(IntList, int);
DECLARE_VECTOR(UIntList, unsigned);
DECLARE_VECTOR(SInt8List, int8_t);
DECLARE_VECTOR(SInt16List, int16_t);
DECLARE_VECTOR(SInt32List, int32_t);

View File

@ -6,6 +6,7 @@
#include <mgba-util/vector.h>
DEFINE_VECTOR(IntList, int);
DEFINE_VECTOR(UIntList, unsigned);
DEFINE_VECTOR(SInt8List, int8_t);
DEFINE_VECTOR(SInt16List, int16_t);
DEFINE_VECTOR(SInt32List, int32_t);