mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

* sumatrapdf - vendor import * everything compiles (libjpeg, poppler, fitz, sumatrapdf) * does NOT link (remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it) svn path=/trunk/; revision=29295
15 lines
487 B
C
15 lines
487 B
C
#ifndef TRANSLATIONS_H__
|
|
#define TRANSLATIONS_H__
|
|
|
|
//bool Translations_FromData(const char* langs, const char* data, size_t data_len);
|
|
bool Translations_SetCurrentLanguage(const char* lang);
|
|
const char* Translatations_GetTranslation(const char* txt);
|
|
const WCHAR* Translatations_GetTranslationW(const char* txt);
|
|
void Translations_FreeData();
|
|
|
|
#define _TR(x) Translatations_GetTranslation(x)
|
|
#define _TRN(x) x
|
|
#define _TRW(x) Translatations_GetTranslationW(x)
|
|
#define _TRWN(x) x
|
|
|
|
#endif
|