OSDN Git Service

最初のコミット
[winaudioj/stedx.git] / gettext_wrapper.h
1 /*
2   gettext_wrapper.h  gettext wrapper
3
4   Made by Daisuke Nagano <breeze_nagano@nifty.ne.jp>
5   Mar.29.1998 
6
7  */
8 #pragma once
9
10 #ifndef _GETTEXT_WRAPPER_H_
11 #define _GETTEXT_WRAPPER_H_
12
13 #ifdef ENABLE_NLS
14 # include <locale.h>
15 # include <libintl.h>
16 # undef _
17 # define _(string) gettext(string)
18 # define N_(String) (String)
19
20 #else /* ENABLE_NLS */
21 # define _(string) string
22 # define N_(String) (String)
23 #endif /* ENABLE_NLS */
24
25 #endif /* _GETTEXT_WRAPPER_H_ */
26