ULAPI  8.0
ultypes.h
1 
7 #ifndef ULTYPES_H
8 #define ULTYPES_H
9 
10 #include "ultest.h"
11 
12 #ifdef __APPLE__
13 #ifndef UL_ANSI
14 #define UL_ANSI
15 #endif
16 #endif
17 
18 #if defined(UL_ANSI)
19 #include <iostream>
20 #include <fstream>
21 #include <list>
22 #include <map>
23 #include <string>
24 #include <string.h>
25 using namespace std;
26 
27 typedef unsigned char uluint8;
28 typedef unsigned short uluint16;
29 typedef short ulint16;
30 typedef unsigned int uluint32;
31 typedef int ulint32;
32 #else
33 
34 #include <string.h>
35 
36 typedef unsigned char uluint8;
37 typedef unsigned short uluint16;
38 typedef short ulint16;
39 typedef unsigned int uluint32;
40 typedef int ulint32;
41 #endif
42 
43 #endif // ULTYPES_H
44