Add define for NULL

This commit is contained in:
Christian Semmler 2024-03-21 20:18:30 -04:00
parent 8682f83591
commit babc1df020

View File

@ -52,6 +52,10 @@ typedef MxU8 MxBool;
#define FALSE 0
#endif
#ifndef NULL
#define NULL 0
#endif
#define TWOCC(a, b) (((a) << 0) | ((b) << 8))
#define FOURCC(a, b, c, d) (((a) << 0) | ((b) << 8) | ((c) << 16) | ((d) << 24))