synfig-studio  1.0.3
gui/general.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIGSTUDIO_GENERAL_H
26 #define __SYNFIGSTUDIO_GENERAL_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #ifdef ENABLE_NLS
31 #include <libintl.h>
32 #endif
33 
34 /* === M A C R O S ========================================================= */
35 
36 #undef _
37 #undef gettext_noop
38 #undef N_
39 #ifdef ENABLE_NLS
40 #define _(x) gettext(x)
41 #define gettext_noop(x) x
42 #define N_(x) gettext_noop(x)
43 #else
44 #define _(x) (x)
45 #define N_(x) (x)
46 #endif
47 
48 /* === T Y P E D E F S ===================================================== */
49 
50 /* === C L A S S E S & S T R U C T S ======================================= */
51 
52 /* === E N D =============================================================== */
53 
54 #endif