mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
24 lines
383 B
C
24 lines
383 B
C
#ifndef _GETTEXT_H_
|
|
#define _GETTEXT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
bool gettextLoadLanguage(const char* langFile);
|
|
void gettextCleanUp(void);
|
|
/*
|
|
* input msg = a text in ASCII
|
|
* output = the translated msg in utf-8
|
|
*/
|
|
const char *get_text(const char *msg);
|
|
#define tr(s) get_text(s)
|
|
#define trNOOP(s) (s)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _GETTEXT_H_ */
|