Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenwpp.h
Go to the documentation of this file.
00001 /* 00002 * Exported functions of the Wine preprocessor 00003 * 00004 * Copyright 2002 Alexandre Julliard 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2.1 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00019 */ 00020 00021 #ifndef __WINE_WPP_H 00022 #define __WINE_WPP_H 00023 00024 #include <stdio.h> 00025 00026 extern void wpp_add_define( const char *name, const char *value ); 00027 extern void wpp_del_define( const char *name ); 00028 extern void wpp_add_cmdline_define( const char *value ); 00029 extern void wpp_set_debug( int lex_debug, int parser_debug, int msg_debug ); 00030 extern void wpp_set_pedantic( int on ); 00031 extern void wpp_add_include_path( const char *path ); 00032 extern char *wpp_find_include( const char *name, const char *parent_name ); 00033 extern int wpp_parse( const char *input, FILE *output ); 00034 extern int wpp_parse_temp( const char *input, const char *output_base, char **output_name ); 00035 00036 #endif /* __WINE_WPP_H */ Generated on Sat May 26 2012 04:29:25 for ReactOS by
1.7.6.1
|