d3d11/tests: Add test for 3D texture interfaces.
[wine.git] / tools / wmc / wmc.h
blob9ef9ac77a562e455eccb5aef8da88ed58a9c7647
1 /*
2 * Main definitions and externals
4 * Copyright 2000 Bertho A. Stultiens (BS)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WMC_WMC_H
22 #define __WMC_WMC_H
24 #include "wmctypes.h"
27 * The default codepage setting is only to
28 * read and convert input which is non-message
29 * text. It doesn't really matter that much because
30 * all codepages map 0x00-0x7f to 0x0000-0x007f from
31 * char to unicode and all non-message text should
32 * be plain ASCII.
33 * However, we do implement iso-8859-1 for 1-to-1
34 * mapping for all other chars, so this is very close
35 * to what we really want.
37 #define WMC_DEFAULT_CODEPAGE 28591
39 extern int pedantic;
40 extern int leave_case;
41 extern int byteorder;
42 extern int decimal;
43 extern int custombit;
44 extern int unicodein;
45 extern int unicodeout;
46 extern int rcinline;
48 extern char *output_name;
49 extern char *input_name;
50 extern char *header_name;
51 extern char *cmdline;
53 extern int line_number;
54 extern int char_number;
56 int mcy_parse(void);
57 extern int mcy_debug;
58 extern int want_nl;
59 extern int want_line;
60 extern int want_file;
61 extern node_t *nodehead;
62 extern lan_blk_t *lanblockhead;
64 int mcy_lex(void);
65 extern FILE *yyin;
66 void set_codepage(int cp);
68 void add_token(tok_e type, const WCHAR *name, int tok, int cp, const WCHAR *alias, int fix);
69 token_t *lookup_token(const WCHAR *s);
70 void get_tokentable(token_t **tab, int *len);
72 #endif