Diff for /np2/win9x/compiler.h between versions 1.27 and 1.28

version 1.27, 2005/03/20 08:58:19 version 1.28, 2005/03/20 13:12:49
Line 11 Line 11
 #endif  #endif
   
 #define BYTESEX_LITTLE  #define BYTESEX_LITTLE
   #if !defined(OSLANG_UTF8)
 #if !defined(_UNICODE)  #if !defined(_UNICODE)
 #define OSLANG_SJIS  #define OSLANG_SJIS
 #else  #else
 #define OSLANG_UCS2  #define OSLANG_UCS2
 #endif  #endif
   #endif
 #define OSLINEBREAK_CRLF  #define OSLINEBREAK_CRLF
   
 #ifndef __GNUC__  #ifndef __GNUC__
Line 59  typedef signed __int64  SINT64; Line 61  typedef signed __int64  SINT64;
 #define STRCALL         __stdcall  #define STRCALL         __stdcall
   
 #define BRESULT                         UINT8  #define BRESULT                         UINT8
   #if !defined(OSLANG_UTF8)
 #define OEMCHAR                         TCHAR  #define OEMCHAR                         TCHAR
 #define OEMTEXT(string)         _T(string)  #define OEMTEXT(string)         _T(string)
 #define OEMSPRINTF                      wsprintf  #define OEMSPRINTF                      wsprintf
 #define OEMSTRLEN                       lstrlen  #define OEMSTRLEN                       lstrlen
   #else
   #define OEMCHAR                         char
   #define OEMTEXT(string)         string
   #define OEMSPRINTF                      sprintf
   #define OEMSTRLEN                       strlen
   #endif
   
   
 #include        "common.h"  #include        "common.h"
Line 103  typedef signed __int64  SINT64; Line 112  typedef signed __int64  SINT64;
 #define VRAMCALL        __fastcall  #define VRAMCALL        __fastcall
 #define SCRNCALL        __fastcall  #define SCRNCALL        __fastcall
   
 #if !defined(_UNICODE)  #if defined(OSLANG_SJIS)
 #define SUPPORT_SJIS  #define SUPPORT_SJIS
   #elif defined(OSLANG_UTF8)
   #define SUPPORT_UTF8
 #else  #else
 #define SUPPORT_ANK  #define SUPPORT_ANK
 #endif  #endif

Removed from v.1.27  
changed lines
  Added in v.1.28


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