comparison src/audacious/i18n.h @ 4557:2eee464379dc

Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 May 2008 01:29:46 +0300
parents f1c756f39e6c
children 2848411c8f12
comparison
equal deleted inserted replaced
4556:332d2992e04c 4557:2eee464379dc
15 * 15 *
16 * The Audacious team does not consider modular code linking to 16 * The Audacious team does not consider modular code linking to
17 * Audacious or using our public API to be a derived work. 17 * Audacious or using our public API to be a derived work.
18 */ 18 */
19 19
20 #ifndef __AUDACIOUS_I18N_H__ 20 #ifndef AUDACIOUS_I18N_H
21 #define __AUDACIOUS_I18N_H__ 21 #define AUDACIOUS_I18N_H
22 22
23 #include <glib/gstrfuncs.h> 23 #include <glib/gstrfuncs.h>
24 #include <libintl.h> 24 #include <libintl.h>
25 25
26 #define _(String) dgettext (PACKAGE, String) 26 #define _(String) dgettext (PACKAGE, String)
29 #define N_(String) gettext_noop (String) 29 #define N_(String) gettext_noop (String)
30 #else 30 #else
31 #define N_(String) (String) 31 #define N_(String) (String)
32 #endif 32 #endif
33 33
34 #endif 34 #endif /* AUDACIOUS_I18N_H */