25 |
extern "C" { |
extern "C" { |
26 |
#endif |
#endif |
27 |
|
|
28 |
|
struct gettext_tab_s { |
29 |
|
int ctlid; |
30 |
|
const char *trans; |
31 |
|
}; |
32 |
|
|
33 |
#define _(a) gettext (a) |
#define _(a) gettext (a) |
34 |
#define N_(a) (a) |
#define N_(a) (a) |
35 |
|
|
36 |
int set_gettext_file (const char * filename, const char * nls_dir); |
int set_gettext_file (const char * filename, const char * nls_dir); |
37 |
const char *gettext (const char * msgid); |
const char *gettext (const char * msgid); |
38 |
const char *get_gettext_langid (void); |
const char *get_gettext_langid (void); |
39 |
|
void gettext_localize_dialog (HWND dlg, struct gettext_tab_s *tab, |
40 |
|
const char *title); |
41 |
|
|
42 |
#ifdef __cplusplus |
#ifdef __cplusplus |
43 |
} |
} |