summaryrefslogtreecommitdiff
path: root/src/lang.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 14:29:20 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 14:29:20 +0200
commit06156b3034353cc1d62b4f825b1fcad799e944eb (patch)
tree26f7476ee50610853ac8fbf0f54c420cfb7cfc99 /src/lang.h
parentd3ab1ae8b92433ec711c1396838b32f2f9f35d7b (diff)
Lang: Began replacing UI strings with IDs
IssueID #192
Diffstat (limited to 'src/lang.h')
-rw-r--r--src/lang.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lang.h b/src/lang.h
new file mode 100644
index 00000000..3e9291f2
--- /dev/null
+++ b/src/lang.h
@@ -0,0 +1,10 @@
1#pragma once
2
3#include <the_Foundation/string.h>
4
5void init_Lang (void);
6void deinit_Lang (void);
7
8void setCurrent_Lang (const char *language);
9const iString * string_Lang (const char *msgId);
10const char * cstr_Lang (const char *msgId);