--- np2/x11/compiler.h 2008/03/13 16:27:39 1.36 +++ np2/x11/compiler.h 2011/01/15 14:25:22 1.39 @@ -1,4 +1,4 @@ -/* $Id: compiler.h,v 1.36 2008/03/13 16:27:39 monaka Exp $ */ +/* $Id: compiler.h,v 1.39 2011/01/15 14:25:22 monaka Exp $ */ /*- * Copyright (c) 2003, 2004 NONAKA Kimihiro @@ -89,14 +89,14 @@ typedef gboolean BOOL; #define PTR_TO_UINT32(p) ((UINT32)GPOINTER_TO_UINT(p)) #define UINT32_TO_PTR(v) GUINT_TO_POINTER((UINT32)(v)) -#ifndef TRUE -#define TRUE 1 -#endif - #ifndef FALSE #define FALSE 0 #endif +#ifndef TRUE +#define TRUE (!FALSE) +#endif + #ifndef MAX_PATH #define MAX_PATH MAXPATHLEN #endif @@ -173,7 +173,7 @@ UINT32 gettick(void); #define SPRINTF sprintf #define STRLEN strlen -#define OEMCHAR char +#define OEMCHAR gchar #define OEMTEXT(s) s #define OEMNULLSTR OEMTEXT("") #define OEMSPRINTF sprintf @@ -228,6 +228,8 @@ UINT32 gettick(void); #define SUPPORT_KEYDISP #define SUPPORT_SOFTKBD 0 +#define SUPPORT_SCREENSIZE + #if defined(USE_SDLAUDIO) || defined(USE_SDLMIXER) #define SUPPORT_JOYSTICK #define USE_SDL_JOYSTICK @@ -246,5 +248,6 @@ extern char timidity_cfgfile_path[MAX_PA #include "rect.h" #include "lstarray.h" #include "trace.h" +#include "toolkit.h" #endif /* NP2_X11_COMPILER_H__ */