Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

config.h

Go to the documentation of this file.
00001 #ifndef AUDIERE_CONFIG_H
00002 #define AUDIERE_CONFIG_H
00003 
00004 
00005 #ifdef _MSC_VER  // VC++
00006 
00007   typedef unsigned __int8  adr_u8;
00008   typedef signed   __int8  adr_s8;
00009   typedef unsigned __int16 adr_u16;
00010   typedef signed   __int16 adr_s16;
00011   typedef unsigned __int32 adr_u32;
00012   typedef signed   __int32 adr_s32;
00013   typedef unsigned __int64 adr_u64;
00014   typedef signed   __int64 adr_s64;
00015 
00016 #else            // assume gcc i386 linux ;)
00017 
00018   typedef unsigned char      adr_u8;
00019   typedef signed   char      adr_s8;
00020   typedef unsigned short     adr_u16;
00021   typedef signed   short     adr_s16;
00022   typedef unsigned long      adr_u32;
00023   typedef signed   long      adr_s32;
00024   typedef unsigned long long adr_u64;
00025   typedef signed   long long adr_s64;
00026 
00027 #endif
00028 
00029 
00030 #endif

Generated at Mon Jun 10 02:55:12 2002 for audiere by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001