vbagx/source/utils/gettext.h
2010-03-21 20:44:28 +00:00

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_ */