Panda3D
typedef.h
1 // Filename: typedef.h
2 // Created by: mike (09Jan97)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 #ifndef TYPEDEF_H
15 #define TYPEDEF_H
16 
17 #include "pandabase.h"
18 #include "numeric_types.h"
19 
20 typedef unsigned char uchar;
21 typedef unsigned short ushort;
22 typedef unsigned int uint;
23 typedef unsigned long ulong;
24 
25 typedef PN_int64 longlong;
26 typedef PN_uint64 ulonglong;
27 
28 
29 #endif