25 lines
564 B
C++
25 lines
564 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: Types.hpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Created: 14/12/2014 05:05:33
|
|
*
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#ifndef TYPES_HPP_
|
|
#define TYPES_HPP_
|
|
|
|
typedef unsigned char u8;
|
|
typedef signed char s8;
|
|
typedef unsigned short u16;
|
|
typedef signed short s16;
|
|
typedef unsigned long u32;
|
|
typedef signed long s32;
|
|
|
|
#endif // TYPES_HPP_
|