~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/tools/widl/widl.h

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * IDL Compiler
  3  *
  4  * Copyright 2002 Ove Kaaven
  5  *
  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.
 10  *
 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.
 15  *
 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
 19  */
 20 
 21 #ifndef __WIDL_WIDL_H
 22 #define __WIDL_WIDL_H
 23 
 24 #include "widltypes.h"
 25 
 26 #include <time.h>
 27 
 28 extern int debuglevel;
 29 #define DEBUGLEVEL_NONE         0x0000
 30 #define DEBUGLEVEL_CHAT         0x0001
 31 #define DEBUGLEVEL_DUMP         0x0002
 32 #define DEBUGLEVEL_TRACE        0x0004
 33 #define DEBUGLEVEL_PPMSG        0x0008
 34 #define DEBUGLEVEL_PPLEX        0x0010
 35 #define DEBUGLEVEL_PPTRACE      0x0020
 36 
 37 extern int pedantic;
 38 extern int do_everything;
 39 extern int do_header;
 40 extern int do_typelib;
 41 extern int do_proxies;
 42 extern int do_client;
 43 extern int do_server;
 44 extern int do_idfile;
 45 extern int do_dlldata;
 46 extern int old_names;
 47 extern int do_win32;
 48 extern int do_win64;
 49 extern int packing;
 50 
 51 extern char *input_name;
 52 extern char *header_name;
 53 extern char *header_token;
 54 extern char *local_stubs_name;
 55 extern char *typelib_name;
 56 extern char *dlldata_name;
 57 extern char *proxy_name;
 58 extern char *proxy_token;
 59 extern char *client_name;
 60 extern char *client_token;
 61 extern char *server_name;
 62 extern char *server_token;
 63 extern const char *prefix_client;
 64 extern const char *prefix_server;
 65 extern size_t pointer_size;
 66 extern time_t now;
 67 
 68 extern int line_number;
 69 extern int char_number;
 70 
 71 extern void write_header(const statement_list_t *stmts);
 72 extern void write_id_data(const statement_list_t *stmts);
 73 extern void write_proxies(const statement_list_t *stmts);
 74 extern void write_client(const statement_list_t *stmts);
 75 extern void write_server(const statement_list_t *stmts);
 76 extern void write_local_stubs(const statement_list_t *stmts);
 77 extern void write_dlldata(const statement_list_t *stmts);
 78 
 79 extern void start_cplusplus_guard(FILE *fp);
 80 extern void end_cplusplus_guard(FILE *fp);
 81 
 82 #endif
 83 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.