Implement MxDSAction::AppendData (#105)

* Implement MxDSAction::ConcatData

* use GLOBAL

* Update mxdsaction.cpp

* Update mxdsaction.h

* Move TWOCC/FOURCC to common header file

* Fix

* Fix deletes
This commit is contained in:
Christian Semmler
2023-08-10 13:57:19 -04:00
committed by GitHub
parent 88bfb3c419
commit a02e07c4d7
4 changed files with 53 additions and 25 deletions

View File

@@ -41,4 +41,7 @@ typedef MxU8 MxBool;
#define FALSE 0
#endif
#define TWOCC(a, b) (((a) << 0) | ((b) << 8))
#define FOURCC(a, b, c, d) (((a) << 0) | ((b) << 8) | ((c) << 16) | ((d) << 24))
#endif // MXTYPE_H