blob: 503d0cd7774f300b3af4325bc33c2752a0d51390 (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/****************************************************************************\
____ ___ _ _ _
| _ \ ___|_ _|_ __ | |__ ___ _ __(_) |_
| |_) / _ \| || '_ \| '_ \ / _ \ '__| | __|
| _ < __/| || | | | | | | __/ | | | |_
|_| \_\___|___|_| |_|_| |_|\___|_| |_|\__|
----------------------------------------------------------------------------
Project: ReInherit Engine
Version: .1a
The ReInherit Engine is (C)2000-2001 by Daniel Balsom
This code is subject to the terms and conditions of the General Public
License (GPL).
----------------------------------------------------------------------------
File: x86-32.h
Revision: $Revision$
Description:
Architecture-specific typedefs for Intel(tm) compatible 32 bit processors
Notes:
\****************************************************************************/
#ifndef R_ARCH_H
#define R_ARCH_H
namespace Saga {
#define R_LITTLE_ENDIAN
typedef unsigned int R_UINT32;
typedef signed int R_SINT32;
typedef unsigned short R_UINT16;
typedef signed short R_SINT16;
typedef unsigned char R_UINT8;
typedef signed char R_SINT8;
} // End of namespace Saga
#endif /* R_ARCH_H */
|