Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenparser.h
Go to the documentation of this file.
00001 /* 00002 * IDL Compiler 00003 * 00004 * Copyright 2002 Ove Kaaven 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 __WIDL_PARSER_H 00022 #define __WIDL_PARSER_H 00023 00024 typedef struct 00025 { 00026 type_t *interface; 00027 unsigned char old_pointer_default; 00028 } interface_info_t; 00029 00030 int parser_parse(void); 00031 00032 extern FILE *parser_in; 00033 extern char *parser_text; 00034 extern int parser_debug; 00035 extern int yy_flex_debug; 00036 00037 int parser_lex(void); 00038 00039 extern int import_stack_ptr; 00040 int do_import(char *fname); 00041 void abort_import(void); 00042 void pop_import(void); 00043 00044 #define parse_only import_stack_ptr 00045 00046 int is_type(const char *name); 00047 00048 extern char *temp_name; 00049 00050 #endif Generated on Sun May 27 2012 04:21:57 for ReactOS by
1.7.6.1
|