mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
13 lines
217 B
C
13 lines
217 B
C
#ifndef _GETTEXT_H_
|
|
#define _GETTEXT_H_
|
|
|
|
bool LoadLanguage();
|
|
|
|
/*
|
|
* input msg = a text in ASCII
|
|
* output = the translated msg in utf-8
|
|
*/
|
|
const char *gettext(const char *msg);
|
|
|
|
#endif /* _GETTEXT_H_ */
|