YAPOG  0.0.1
Yet Another Pokemon Online Game
IntTypes.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_TYPES_HPP
2 # define YAPOG_TYPES_HPP
3 
4 namespace yap
5 {
6  typedef signed char Int8;
7  typedef unsigned char UInt8;
8  typedef UInt8 uchar;
9 
10  typedef signed short Int16;
11  typedef unsigned short UInt16;
12 
13  typedef signed int Int32;
14  typedef unsigned int UInt32;
15  typedef UInt32 uint;
16 
17 # if defined (_MSC_VER)
18  typedef signed __int64 Int64;
19  typedef unsigned __int64 UInt64;
20 # else
21  typedef signed long long Int64;
22  typedef unsigned long long UInt64;
23 # endif // _MSC_VER
24 } // namespace yap
25 
26 #endif // YAPOG_TYPES_HPP