:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / tools / wmc / lang.h
1 /*
2  * Wine Message Compiler language and codepage support
3  *
4  * Copyright 2000 Bertho A. Stultiens (BS)
5  *
6  */
7
8 #ifndef __WMC_LANG_H
9 #define __WMC_LANG_H
10
11 //#include "wine/unicode.h"
12
13 typedef struct language {
14         unsigned        id;
15         unsigned        doscp;
16         unsigned        wincp;
17         char            *name;
18         char            *country;
19 } language_t;
20
21 void show_languages(void);
22 const language_t *find_language(unsigned id);
23 void show_codepages(void);
24 const union cptable *find_codepage(int id);
25
26 #endif