update Chinese(Simplified) translation
[maemo-rb.git] / lib / unwarminder / types.h
blob2e902f34d2bdac9770d786516b8070cd7fac7653
1 /***************************************************************************
2 * ARM Stack Unwinder, Michael.McTernan.2001@cs.bris.ac.uk
4 * This program is PUBLIC DOMAIN.
5 * This means that there is no copyright and anyone is able to take a copy
6 * for free and use it as they wish, with or without modifications, and in
7 * any context, commercially or otherwise. The only limitation is that I
8 * don't guarantee that the software is fit for any purpose or accept any
9 * liability for it's use or misuse - this software is without warranty.
10 **************************************************************************/
11 /** \file
12 * Types common across the whole system.
13 **************************************************************************/
15 #ifndef TYPES_H
16 #define TYPES_H
18 #define UPGRADE_ARM_STACK_UNWIND
19 #undef UNW_DEBUG
21 typedef unsigned char Int8;
22 typedef unsigned short Int16;
23 typedef unsigned int Int32;
26 typedef signed char SignedInt8;
27 typedef signed short SignedInt16;
28 typedef signed int SignedInt32;
31 typedef enum
33 FALSE,
34 TRUE
35 } Boolean;
37 #endif
39 /* END OF FILE */