source: sources/src/sc_nbdefs.h @ 52

Last change on this file since 52 was 52, checked in by meunier, 11 years ago

Code formatting in all source files.

File size: 1.3 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
13#ifndef __SC_DEFS_H__
14#define __SC_DEFS_H__
15
16#ifndef WIN32
17typedef signed long long int64;
18typedef unsigned long long uint64;
19#else
20typedef signed __int64 int64;
21typedef unsigned __int64 uint64;
22#endif
23
24typedef long  int32;
25typedef short int16;
26typedef char  int8;
27typedef unsigned long  uint32;
28typedef unsigned short uint16;
29typedef unsigned char  uint8;
30
31typedef uint16 smallest_uint;
32typedef int16  smallest_int;
33
34#endif
35
36/*
37# Local Variables:
38# tab-width: 4;
39# c-basic-offset: 4;
40# c-file-offsets:((innamespace . 0)(inline-open . 0));
41# indent-tabs-mode: nil;
42# End:
43#
44# vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
45*/
46
Note: See TracBrowser for help on using the repository browser.