forked from metin2/server
15 lines
253 B
C++
15 lines
253 B
C++
#ifndef __INC_METIN2_GAME_LOCALE_H__
|
|
#define __INC_METIN2_GAME_LOCALE_H__
|
|
|
|
extern "C"
|
|
{
|
|
void locale_init(const char *filename);
|
|
const char *locale_find(const char *string);
|
|
|
|
extern int g_iUseLocale;
|
|
|
|
#define LC_TEXT(str) locale_find(str)
|
|
};
|
|
|
|
#endif
|