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