forked from thomas-maeder/popeye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylang.h
41 lines (35 loc) · 1.3 KB
/
pylang.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/******************** MODIFICATIONS to pylang.h **************************
**
** Date Who What
**
** 1992 Original
**
**************************** End of List ******************************/
#if !defined(PYLANG_H)
#define PYLANG_H
#include "input/plaintext/language.h"
/* Get name of a language
* @param lang language identifier
* @return 0 terminated string containing the name of the language;
* the string is owned by the language module and maybe
* overwritten by a subsequent call to a function from this
* module.
*/
char const *GetLanguageName(Language lang);
/* Get name of the file containing the strings for a language
* @param lang language identifier
* @return 0 terminated string containing the file name;
* the string is owned by the language module and maybe
* overwritten by a subsequent call to a function from this
* module.
*/
char const *MkStrFileName(Language lang);
/* Get name of the file containing the messages for a language
* @param lang language identifier
* @return 0 terminated string containing the file name;
* the string is owned by the language module and maybe
* overwritten by a subsequent call to a function from this
* module.
*/
char const *MkMsgFileName(Language lang);
#endif