Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkIntTypes.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkIntTypes.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/09/10 14:29:13 $
00007   Version:   $Revision: 1.6 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkIntTypes_h
00018 #define __itkIntTypes_h
00019 
00020 #ifdef __cplusplus
00021 extern "C" {
00022 #endif
00023 
00025 typedef char      ITK_INT8;
00026 typedef int       ITK_INT32;
00027 
00028 #ifndef _WIN32
00029 typedef long long   ITK_INT64;
00030 #endif
00031 
00032 #ifdef _WIN32
00033 typedef long      ITK_INT64;
00034 #endif
00035 
00036 typedef unsigned char ITK_UINT8;
00037 typedef unsigned short  ITK_UINT16;
00038 typedef unsigned    ITK_UINT32;
00039 
00040 #ifndef _WIN32
00041 typedef unsigned long long  ITK_UINT64;
00042 #endif
00043 
00044 #ifdef _WIN32
00045 typedef unsigned long ITK_UINT64;
00046 #endif
00047 
00048 typedef int       ITK_INTPTR;
00049 typedef unsigned    ITK_UINTPTR;
00050 
00051 #ifdef __cplusplus
00052 }
00053 #endif
00054 
00055 #endif  /* __itkIntTypes_h */
00056 
00057 

Generated at Wed Nov 5 22:28:18 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000