|
|
| version 1.38, 2008/04/03 13:51:20 | version 1.42, 2011/01/15 18:43:13 |
|---|---|
| Line 1 | Line 1 |
| /* $Id$ */ | |
| /*- | /*- |
| * Copyright (c) 2003, 2004 NONAKA Kimihiro | * Copyright (c) 2003, 2004 NONAKA Kimihiro |
| * All rights reserved. | * All rights reserved. |
| Line 33 | Line 31 |
| #include "config.h" | #include "config.h" |
| #endif | #endif |
| #ifdef ENABLE_NLS | |
| #include <libintl.h> | |
| #define _(s) gettext(s) | |
| #ifdef gettext_noop | |
| #define N_(s) gettext_noop(s) | |
| #else | |
| #define N_(s) (s) | |
| #endif | |
| #else /* !ENABLE_NLS */ | |
| #define _(s) (s) | |
| #define N_(s) (s) | |
| #define textdomain(s) (s) | |
| #define gettext(s) (s) | |
| #define dgettext(d,s) (s) | |
| #define dcgettext(d,s,t) (s) | |
| #define bindtextdomain(d,dir) (d) | |
| #define bind_textdomain_codeset(d,c) (c) | |
| #endif /* ENABLE_NLS */ | |
| #ifdef WORDS_BIGENDIAN | #ifdef WORDS_BIGENDIAN |
| #define BYTESEX_BIG | #define BYTESEX_BIG |
| #else /* !WORDS_BIGENDIAN */ | #else /* !WORDS_BIGENDIAN */ |
| Line 89 typedef gboolean BOOL; | Line 106 typedef gboolean BOOL; |
| #define PTR_TO_UINT32(p) ((UINT32)GPOINTER_TO_UINT(p)) | #define PTR_TO_UINT32(p) ((UINT32)GPOINTER_TO_UINT(p)) |
| #define UINT32_TO_PTR(v) GUINT_TO_POINTER((UINT32)(v)) | #define UINT32_TO_PTR(v) GUINT_TO_POINTER((UINT32)(v)) |
| #ifndef TRUE | |
| #define TRUE 1 | |
| #endif | |
| #ifndef FALSE | #ifndef FALSE |
| #define FALSE 0 | #define FALSE 0 |
| #endif | #endif |
| #ifndef TRUE | |
| #define TRUE (!FALSE) | |
| #endif | |
| #ifndef MAX_PATH | #ifndef MAX_PATH |
| #define MAX_PATH MAXPATHLEN | #define MAX_PATH MAXPATHLEN |
| #endif | #endif |
| Line 122 typedef gboolean BOOL; | Line 139 typedef gboolean BOOL; |
| #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) | #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) |
| #endif | #endif |
| #ifndef UNUSED | |
| #define UNUSED(v) ((void)(v)) | |
| #endif | |
| #define FASTCALL | #define FASTCALL |
| #define SOUNDCALL | #define SOUNDCALL |
| #define MEMCALL | #define MEMCALL |
| Line 173 UINT32 gettick(void); | Line 186 UINT32 gettick(void); |
| #define SPRINTF sprintf | #define SPRINTF sprintf |
| #define STRLEN strlen | #define STRLEN strlen |
| #define OEMCHAR char | #define OEMCHAR gchar |
| #define OEMTEXT(s) s | #define OEMTEXT(s) s |
| #define OEMNULLSTR OEMTEXT("") | #define OEMNULLSTR OEMTEXT("") |
| #define OEMSPRINTF sprintf | #define OEMSPRINTF sprintf |