]> rtime.felk.cvut.cz Git - orte.git/blob - orte/include/orte/basic_types.h
Reformat the sources with orte/uncrustify script
[orte.git] / orte / include / orte / basic_types.h
1 #ifndef BASIC_TYPES_H
2 #define BASIC_TYPES_H 1
3
4
5 enum {
6   CORBA_FALSE = 0,
7   CORBA_TRUE  = 1
8 };
9
10 typedef int16_t   CORBA_short;
11 typedef int32_t   CORBA_long;
12 typedef uint16_t  CORBA_unsigned_short;
13 typedef uint32_t  CORBA_unsigned_long;
14 typedef float     CORBA_float;
15 typedef double    CORBA_double;
16 typedef char      CORBA_char;
17 typedef int16_t   CORBA_wchar;
18 typedef uint8_t   CORBA_boolean;
19 typedef uint8_t   CORBA_octet;
20 typedef double    CORBA_long_double;
21
22 /*
23  * Bad hack, oh well
24  */
25
26 typedef CORBA_char  *CORBA_string;
27 typedef CORBA_wchar *CORBA_wstring;
28
29 #endif