diff options
Diffstat (limited to 'tools/cine_tools/typedefs.h')
-rw-r--r-- | tools/cine_tools/typedefs.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/cine_tools/typedefs.h b/tools/cine_tools/typedefs.h new file mode 100644 index 0000000000..03de18d41a --- /dev/null +++ b/tools/cine_tools/typedefs.h @@ -0,0 +1,14 @@ +#ifndef CINE_TYPEDEFS_H +#define CINE_TYPEDEFS_H + +typedef unsigned char uint8; +typedef signed char int8; +typedef unsigned short uint16; +typedef signed short int16; +typedef unsigned long uint32; +typedef signed long int32; + +typedef unsigned int uint; +typedef unsigned char byte; + +#endif |