GodMode9/arm9/source/language.h
Pk11 8303440c19 Add loading translations from TRF
Reduce pointer magic use

Both translations and fonts
2023-04-15 12:54:02 +02:00

11 lines
301 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);