Allocate DC objects on the process heap, and removed WIN_DC_INFO
[wine/multimedia.git] / tools / wmc / lang.h
blob678a35e92fa2c7222367d21c68e01d60e3a014e7
1 /*
2 * Wine Message Compiler language and codepage support
4 * Copyright 2000 Bertho A. Stultiens (BS)
6 */
8 #ifndef __WMC_LANG_H
9 #define __WMC_LANG_H
11 #include "wine/unicode.h"
13 typedef struct language {
14 unsigned id;
15 unsigned doscp;
16 unsigned wincp;
17 char *name;
18 char *country;
19 } language_t;
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);
26 #endif