2002-07-16 05:20:45 +02:00
|
|
|
/*
|
|
|
|
* IDL Compiler
|
|
|
|
*
|
|
|
|
* Copyright 2002 Ove Kaaven
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-07-16 05:20:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WIDL_WIDL_H
|
|
|
|
#define __WIDL_WIDL_H
|
|
|
|
|
|
|
|
#include "widltypes.h"
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#define WIDL_FULLVERSION "0.1"
|
|
|
|
|
|
|
|
extern int debuglevel;
|
|
|
|
#define DEBUGLEVEL_NONE 0x0000
|
|
|
|
#define DEBUGLEVEL_CHAT 0x0001
|
|
|
|
#define DEBUGLEVEL_DUMP 0x0002
|
|
|
|
#define DEBUGLEVEL_TRACE 0x0004
|
|
|
|
#define DEBUGLEVEL_PPMSG 0x0008
|
|
|
|
#define DEBUGLEVEL_PPLEX 0x0010
|
|
|
|
#define DEBUGLEVEL_PPTRACE 0x0020
|
|
|
|
|
|
|
|
extern int win32;
|
|
|
|
extern int pedantic;
|
2005-01-26 20:40:47 +01:00
|
|
|
extern int do_header;
|
|
|
|
extern int do_typelib;
|
|
|
|
extern int do_proxies;
|
2005-02-23 21:31:07 +01:00
|
|
|
extern int do_client;
|
|
|
|
extern int do_server;
|
2006-04-22 21:52:51 +02:00
|
|
|
extern int old_names;
|
2002-07-16 05:20:45 +02:00
|
|
|
|
|
|
|
extern char *input_name;
|
|
|
|
extern char *header_name;
|
2004-01-07 05:21:27 +01:00
|
|
|
extern char *typelib_name;
|
2002-07-16 05:20:45 +02:00
|
|
|
extern char *proxy_name;
|
2002-12-03 20:12:07 +01:00
|
|
|
extern char *proxy_token;
|
2005-02-23 21:31:07 +01:00
|
|
|
extern char *client_name;
|
|
|
|
extern char *client_token;
|
|
|
|
extern char *server_name;
|
|
|
|
extern char *server_token;
|
2002-07-16 05:20:45 +02:00
|
|
|
extern time_t now;
|
|
|
|
|
|
|
|
extern int line_number;
|
|
|
|
extern int char_number;
|
|
|
|
|
|
|
|
extern FILE* header;
|
|
|
|
|
2005-02-23 22:03:15 +01:00
|
|
|
extern void write_proxies(ifref_t *ifaces);
|
2005-02-23 21:31:07 +01:00
|
|
|
extern void write_client(ifref_t *ifaces);
|
|
|
|
extern void write_server(ifref_t *ifaces);
|
|
|
|
|
2002-07-16 05:20:45 +02:00
|
|
|
#endif
|