Diff for /np2/sdl/slzaurus/compiler.h between versions 1.2 and 1.6

version 1.2, 2003/11/30 12:32:04 version 1.6, 2004/02/18 03:56:57
Line 13 Line 13
 #define OSLANG_EUC  #define OSLANG_EUC
 #define OSLINEBREAK_LF  #define OSLINEBREAK_LF
   
 typedef signed char             CHAR;  
 typedef signed int              INT;  typedef signed int              INT;
   
 typedef unsigned char   UCHAR;  typedef unsigned char   UCHAR;
Line 28  typedef unsigned short UINT16; Line 27  typedef unsigned short UINT16;
 typedef signed int              SINT32;  typedef signed int              SINT32;
 typedef unsigned int    UINT32;  typedef unsigned int    UINT32;
   
 typedef unsigned char   BYTE;  
 typedef int                             BOOL;  typedef int                             BOOL;
   typedef signed char             CHAR;
   typedef signed char             TCHAR;
   typedef unsigned char   BYTE;
   
   
 #ifndef TRUE  #ifndef TRUE
Line 71  typedef int    BOOL; Line 72  typedef int    BOOL;
 #define BYTESEX_LITTLE  #define BYTESEX_LITTLE
 #endif  /* SDL_BYTEORDER == SDL_BIG_ENDIAN */  #endif  /* SDL_BYTEORDER == SDL_BIG_ENDIAN */
   
 #define __ASSERT(s)     assert(s)  
   
 #define UNUSED(v)       ((void)(v))  #define UNUSED(v)       ((void)(v))
   
 #ifndef NELEMENTS  #ifndef NELEMENTS
 #define NELEMENTS(a)    ((int)(sizeof(a) / sizeof(a[0])))  #define NELEMENTS(a)    ((int)(sizeof(a) / sizeof(a[0])))
 #endif  #endif
   
   
   #if !defined(SIZE_VGA)
   #define RGB16           UINT32
   #define SIZE_QVGA
   #endif
   
   
 #include        "common.h"  #include        "common.h"
 #include        "milstr.h"  #include        "milstr.h"
 #include        "_memory.h"  #include        "_memory.h"
Line 86  typedef int    BOOL; Line 92  typedef int    BOOL;
 #include        "lstarray.h"  #include        "lstarray.h"
 #include        "trace.h"  #include        "trace.h"
   
   
 #define GETTICK()       SDL_GetTicks()  #define GETTICK()       SDL_GetTicks()
 #define SPRINTF         sprintf  #define SPRINTF         sprintf
 #define __ASSERT(s)  #define __ASSERT(s)
Line 98  typedef int    BOOL; Line 105  typedef int    BOOL;
 #define SUPPORT_16BPP  #define SUPPORT_16BPP
 #define MEMOPTIMIZE             2  #define MEMOPTIMIZE             2
   
 #ifndef SIZE_VGA  
 #define SIZE_QVGA  
 #endif  
   
 #define SOUNDRESERVE    100  #define SOUNDRESERVE    100
   
   #define SUPPORT_CRT15KHZ
   
 #define SCREEN_BPP              16  #define SCREEN_BPP              16
   
   

Removed from v.1.2  
changed lines
  Added in v.1.6


RetroPC.NET-CVS <cvs@retropc.net>