MeterLogger
typedef.h
Go to the documentation of this file.
1 /**
2 * \file
3 * Standard Types definition
4 */
5 
6 #ifndef _TYPE_DEF_H_
7 #define _TYPE_DEF_H_
8 
9 typedef char I8;
10 typedef unsigned char U8;
11 typedef short I16;
12 typedef unsigned short U16;
13 typedef long I32;
14 typedef unsigned long U32;
15 typedef unsigned long long U64;
16 
17 #endif
short I16
Definition: typedef.h:11
long I32
Definition: typedef.h:13
unsigned short U16
Definition: typedef.h:12
unsigned long U32
Definition: typedef.h:14
char I8
Definition: typedef.h:9
unsigned char U8
Definition: typedef.h:10
unsigned long long U64
Definition: typedef.h:15