source: latest/src/sc_nbdefs.h @ 1

Last change on this file since 1 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
16typedef signed long long   int64;
17typedef unsigned long long uint64;
18#else
19typedef signed __int64     int64;
20typedef unsigned __int64   uint64;
21#endif
22
23typedef long           int32;
24typedef unsigned long  uint32;
25typedef short          int16;
26typedef unsigned short uint16;
27typedef char           int8;
28typedef unsigned char  uint8;
29
30typedef uint16         smallest_uint;
31typedef int16          smallest_int;
32
33#endif
Note: See TracBrowser for help on using the repository browser.