Last change
on this file since 32 was
1,
checked in by buchmann, 17 years ago
|
Initial import from CVS repository
|
File size:
1.2 KB
|
Line | |
---|
1 | /*------------------------------------------------------------\ |
---|
2 | | | |
---|
3 | | Tool : systemcass | |
---|
4 | | | |
---|
5 | | File : sc_main.cc | |
---|
6 | | | |
---|
7 | | Author : Buchmann Richard | |
---|
8 | | | |
---|
9 | | Date : 09_07_2004 | |
---|
10 | | | |
---|
11 | \------------------------------------------------------------*/ |
---|
12 | #ifndef __SC_DEFS_H__ |
---|
13 | #define __SC_DEFS_H__ |
---|
14 | |
---|
15 | #ifndef WIN32 |
---|
16 | typedef signed long long int64; |
---|
17 | typedef unsigned long long uint64; |
---|
18 | #else |
---|
19 | typedef signed __int64 int64; |
---|
20 | typedef unsigned __int64 uint64; |
---|
21 | #endif |
---|
22 | |
---|
23 | typedef long int32; |
---|
24 | typedef unsigned long uint32; |
---|
25 | typedef short int16; |
---|
26 | typedef unsigned short uint16; |
---|
27 | typedef char int8; |
---|
28 | typedef unsigned char uint8; |
---|
29 | |
---|
30 | typedef uint16 smallest_uint; |
---|
31 | typedef int16 smallest_int; |
---|
32 | |
---|
33 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.