mirror of
https://github.com/libretro/RetroArch
synced 2025-01-17 01:16:25 +00:00
23 lines
431 B
C
23 lines
431 B
C
|
#include "../translation_driver.h"
|
||
|
|
||
|
static void* translation_null_init(const struct translation_driver_info *params)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
static void translation_null_free(void* data)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static char* translation_null_translate_text(const char* game_text)
|
||
|
{
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
const translation_driver_t translation_null = {
|
||
|
translation_null_init,
|
||
|
translation_null_free,
|
||
|
translation_null_translate_text,
|
||
|
NULL,
|
||
|
"null"
|
||
|
};
|