]> rtime.felk.cvut.cz Git - orte.git/blob - orte/include/ew_types.h
2179244d76ae9caf4789dc7ade6e65f6d1ee22ca
[orte.git] / orte / include / ew_types.h
1 /*
2  *  $Id: ew_types.h,v 0.0.0.1         2003/09/10
3  *
4  *  AUTHOR: Petr Smolik                 petr.smolik@wo.cz
5  *
6  *  ORTE - OCERA Real-Time Ethernet     http://www.ocera.org/
7  *  --------------------------------------------------------------------
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *  
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *  
19  */
20
21 #ifndef _EW_TYPES_H
22 #define _EW_TYPES_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 #define u_int8_t  unsigned char
29 #define int8_t    char
30 #define u_int16_t unsigned short
31 #define int16_t   short
32 #define u_int32_t unsigned int
33 #define int32_t   int
34
35 #ifdef __cplusplus
36 } /* extern "C"*/
37 #endif
38
39 #endif  /* _MSC_TYPES_H */
40