Difference for include/global.h from version 1.48 to 1.49


version 1.48 version 1.49
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_global_h =   * static char *rcsid_global_h =
  *   "$Id: global.h,v 1.48 2004/05/08 13:38:04 ryo_saeba Exp $";   *   "$Id: global.h,v 1.49 2005/01/24 07:29:25 mwedel Exp $";
  */   */
   
 /*  /*
Line 53
 
Line 53
   
    
 typedef unsigned int uint32;  typedef unsigned int uint32;
   
   #ifndef UINT32_MAX
 #define UINT32_MAX 4294967295U  #define UINT32_MAX 4294967295U
   #endif
   
 typedef signed int sint32;  typedef signed int sint32;
 #define SINT32_MAX 2147483647  #define SINT32_MAX 2147483647
   
 typedef unsigned short uint16;  typedef unsigned short uint16;
   #ifndef UINT16_MAX
 #define UINT16_MAX 65535  #define UINT16_MAX 65535
   #endif
   
 typedef signed short sint16;  typedef signed short sint16;
 #define SINT16_MAX 32767  #define SINT16_MAX 32767
   
 typedef unsigned char uint8;  typedef unsigned char uint8;
   #ifndef UINT8_MAX
 #define UINT8_MAX 255  #define UINT8_MAX 255
   #endif
   
 typedef signed char sint8;  typedef signed char sint8;
 #define SINT8_MAX 127  #define SINT8_MAX 127
   
Line 80
 
Line 92
 #pragma warning( disable: 4244 ) /* conversion from 'xxx' to 'yyy', possible loss of data */  #pragma warning( disable: 4244 ) /* conversion from 'xxx' to 'yyy', possible loss of data */
 #pragma warning( disable: 4305 ) /* initializing float f = 0.05; instead of f = 0.05f; */  #pragma warning( disable: 4305 ) /* initializing float f = 0.05; instead of f = 0.05f; */
   
 #else // WIN32  #else /* WIN32 */
   
 #if SIZEOF_LONG == 8  #if SIZEOF_LONG == 8
 typedef unsigned long     uint64;  typedef unsigned long     uint64;


Legend:
line(s) removed in v.1.48 
line(s) changed
 line(s) added in v.1.49

File made using version 1.98 of cvs2html by leaf at 2011-07-21 19:21