mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 13:42:47 +00:00
13 lines
354 B
C
13 lines
354 B
C
#pragma once
|
|
|
|
#include "common.h"
|
|
|
|
#define STRING(what, def) extern const char* STR_##what;
|
|
#include "language.inl"
|
|
#undef STRING
|
|
|
|
bool SetLanguage(const void* translation, u32 translation_size);
|
|
const void* GetLanguage(const void* riff, u32 riff_size, u32* version, u32* count, char* language_name);
|
|
|
|
bool LanguageMenu(char* result, const char* title);
|