OpenMPI  0.1.1
OTF_inttypes_win.h
Go to the documentation of this file.
1 /*
2  This is part of the OTF library. Copyright by ZIH, TU Dresden 2005-2012.
3  Authors: Andreas Knuepfer, Holger Brunst, Ronny Brendel, Thomas Kriebitzsch
4 */
5 
6 /**
7  * @file OTF_inttypes_win.h
8  *
9  * @brief Deals with all data type related issues.
10  *
11  * \ingroup misc
12  */
13 
14 
15 #ifndef OTF_INTTYPES_WIN_H
16 #define OTF_INTTYPES_WIN_H
17 
18  /* needed by otf */
19  typedef unsigned char uint8_t;
20  typedef signed int int32_t;
21  typedef unsigned int uint32_t;
22  typedef signed __int64 int64_t;
23  typedef unsigned __int64 uint64_t;
24 
25  /* not needed by otf */
26  typedef signed char int8_t;
27  typedef signed short int16_t;
28  typedef unsigned short uint16_t;
29 
30 # define OTF_UINT64_MAX (uint64_t)-1
31 
32 #endif /* OTF_INTTYPES_WIN_H */