aboutsummaryrefslogtreecommitdiff
path: root/tools/cine_tools/typedefs.h
blob: 03de18d41ae3fcfa6b76542bdecd34ab248c7ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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