* debug.c (debug_make_undefined_tagged_type): Make sure we are
[deliverable/binutils-gdb.git] / binutils / nlmconv.h
CommitLineData
4f55ef5b
ILT
1/* nlmconv.h -- header file for NLM conversion program
2 Copyright (C) 1993 Free Software Foundation, Inc.
3
4This file is part of GNU Binutils.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/* Written by Ian Lance Taylor <ian@cygnus.com>.
21
22 bfd.h, nlm/common.h and nlm/internal.h must be included before this
23 file. */
24
25/* A linked list of strings. */
26
27struct string_list
28{
29 struct string_list *next;
30 char *string;
31};
32
33/* The NLM header parser in nlmheader.y stores information in the
34 following variables. */
35
36extern Nlm_Internal_Fixed_Header *fixed_hdr;
37extern Nlm_Internal_Variable_Header *var_hdr;
38extern Nlm_Internal_Version_Header *version_hdr;
39extern Nlm_Internal_Copyright_Header *copyright_hdr;
40extern Nlm_Internal_Extended_Header *extended_hdr;
41
42/* Procedure named by CHECK. */
43extern char *check_procedure;
44/* File named by CUSTOM. */
45extern char *custom_file;
46/* Whether to generate debugging information (DEBUG). */
47extern boolean debug_info;
48/* Procedure named by EXIT. */
49extern char *exit_procedure;
50/* Exported symbols (EXPORT). */
51extern struct string_list *export_symbols;
52/* Map file name (MAP, FULLMAP). */
53extern char *map_file;
54/* Whether a full map has been requested (FULLMAP). */
55extern boolean full_map;
56/* File named by HELP. */
57extern char *help_file;
58/* Imported symbols (IMPORT). */
59extern struct string_list *import_symbols;
60/* File named by MESSAGES. */
61extern char *message_file;
62/* Autoload module list (MODULE). */
63extern struct string_list *modules;
64/* File named by SHARELIB. */
65extern char *sharelib_file;
66/* Start procedure name (START). */
67extern char *start_procedure;
68/* VERBOSE. */
69extern boolean verbose;
70/* RPC description file (XDCDATA). */
71extern char *rpc_file;
72
73/* The number of serious parse errors. */
74extern int parse_errors;
75
76/* The parser. */
77extern int yyparse PARAMS ((void));
78
79/* Tell the lexer what file to read. */
80extern boolean nlmlex_file PARAMS ((const char *));
This page took 0.094944 seconds and 4 git commands to generate.