Open Inventor Reference
MeVis/ThirdParty/Sources/Inventor/inventor/lib/mevis/include/win32/inttypes.h
Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2003,04   MeVis gGmbH
00003  *
00004  _______________________________________________________________________
00005  ______________________  M E V I S   G G M B H  ________________________
00006  |
00007  |   Description:
00008  |      This include file contains typedef's for standard integer types.
00009  |
00010  |   Author(s)          : Felix Ritter
00011  |
00012  ______________________  M E V I S   G G M B H  ________________________
00013  _______________________________________________________________________
00014  */
00015 
00016 #ifndef _INT_TYPES_
00017 #define _INT_TYPES_
00018 
00019 #ifdef WIN32
00020 
00021 typedef signed int int32_t;
00022 typedef unsigned int uint32_t;
00023 
00024 typedef signed short int int16_t;
00025 typedef unsigned short int uint16_t;
00026 
00027 typedef signed char int8_t;
00028 typedef unsigned char uint8_t;
00029 
00030 #endif
00031 
00032 #endif  // _INT_TYPES_