-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshort_types.hh
More file actions
28 lines (26 loc) · 818 Bytes
/
short_types.hh
File metadata and controls
28 lines (26 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef OBJSDL_SHORT_TYPES_HH
#define OBJSDL_SHORT_TYPES_HH
namespace SDL {
using cbool = const bool;
using cchar = const char;
using uchar = unsigned char;
using cuchar = const unsigned char;
using cshort = const short;
using ushort = unsigned short;
using cushort = const unsigned short;
using cint = const int;
using uint = unsigned int;
using cuint = const unsigned int;
using clong = const long;
using ulong = unsigned long;
using culong = const unsigned long;
using llong = long long;
using cllong = const long long;
using ullong = unsigned long long;
using cullong = const unsigned long long;
using cfloat = const float;
using cdouble = const double;
using ldouble = long double;
using cldouble = const long double;
}
#endif