server/src/locale.pkg

13 lines
413 B
Plaintext
Raw Normal View History

$#undef tolua_reg_types
$#define tolua_reg_types tolua_reg_types_locale
$#include "bind_locale.h"
module eressea {
module locale {
void locale_create @ create(const char *lang);
void locale_set @ set(const char *lang, const char *key, const char *str);
const char * locale_get @ get(const char *lang, const char *key);
int locale_direction @ direction(const char *lang, const char *str);
}
}