00001 /* === S Y N F I G ========================================================= */ 00021 /* ========================================================================= */ 00022 00023 /* === S T A R T =========================================================== */ 00024 00025 #ifndef __SYNFIGSTUDIO_GENERAL_H 00026 #define __SYNFIGSTUDIO_GENERAL_H 00027 00028 /* === H E A D E R S ======================================================= */ 00029 00030 #ifdef ENABLE_NLS 00031 #include <libintl.h> 00032 #endif 00033 00034 /* === M A C R O S ========================================================= */ 00035 00036 #undef _ 00037 #undef gettext_noop 00038 #undef N_ 00039 #ifdef ENABLE_NLS 00040 #define _(x) gettext(x) 00041 #define gettext_noop(x) x 00042 #define N_(x) gettext_noop(x) 00043 #else 00044 #define _(x) (x) 00045 #define N_(x) (x) 00046 #endif 00047 00048 /* === T Y P E D E F S ===================================================== */ 00049 00050 /* === C L A S S E S & S T R U C T S ======================================= */ 00051 00052 /* === E N D =============================================================== */ 00053 00054 #endif