Added tests for FoldStringA/W.
[wine/wine64.git] / tools / widl / widl.h
blob5ef859ffa86778efef76c9a63aef062c3c22dd7c
1 /*
2 * IDL Compiler
4 * Copyright 2002 Ove Kaaven
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef __WIDL_WIDL_H
22 #define __WIDL_WIDL_H
24 #include "widltypes.h"
26 #include <time.h>
28 #define WIDL_FULLVERSION "0.1"
30 extern int debuglevel;
31 #define DEBUGLEVEL_NONE 0x0000
32 #define DEBUGLEVEL_CHAT 0x0001
33 #define DEBUGLEVEL_DUMP 0x0002
34 #define DEBUGLEVEL_TRACE 0x0004
35 #define DEBUGLEVEL_PPMSG 0x0008
36 #define DEBUGLEVEL_PPLEX 0x0010
37 #define DEBUGLEVEL_PPTRACE 0x0020
39 extern int win32;
40 extern int pedantic;
41 extern int header_only;
42 extern int compat_icom;
44 extern char *input_name;
45 extern char *header_name;
46 extern char *proxy_name;
47 extern char *proxy_token;
48 extern time_t now;
50 extern int line_number;
51 extern int char_number;
53 extern FILE* header;
54 extern FILE* proxy;
56 #endif