2 |
7u83 |
1 |
/*
|
|
|
2 |
Crown Copyright (c) 1997
|
|
|
3 |
|
|
|
4 |
This TenDRA(r) Computer Program is subject to Copyright
|
|
|
5 |
owned by the United Kingdom Secretary of State for Defence
|
|
|
6 |
acting through the Defence Evaluation and Research Agency
|
|
|
7 |
(DERA). It is made available to Recipients with a
|
|
|
8 |
royalty-free licence for its use, reproduction, transfer
|
|
|
9 |
to other parties and amendment for any purpose not excluding
|
|
|
10 |
product development provided that any such use et cetera
|
|
|
11 |
shall be deemed to be acceptance of the following conditions:-
|
|
|
12 |
|
|
|
13 |
(1) Its Recipients shall ensure that this Notice is
|
|
|
14 |
reproduced upon any copies or amended versions of it;
|
|
|
15 |
|
|
|
16 |
(2) Any amended version of it shall be clearly marked to
|
|
|
17 |
show both the nature of and the organisation responsible
|
|
|
18 |
for the relevant amendment or amendments;
|
|
|
19 |
|
|
|
20 |
(3) Its onward transfer from a recipient to another
|
|
|
21 |
party shall be deemed to be that party's acceptance of
|
|
|
22 |
these conditions;
|
|
|
23 |
|
|
|
24 |
(4) DERA gives no warranty or assurance as to its
|
|
|
25 |
quality or suitability for any purpose and DERA accepts
|
|
|
26 |
no liability whatsoever in relation to any use to which
|
|
|
27 |
it may be put.
|
|
|
28 |
*/
|
|
|
29 |
|
|
|
30 |
|
|
|
31 |
#ifndef DUMP_INCLUDED
|
|
|
32 |
#define DUMP_INCLUDED
|
|
|
33 |
|
|
|
34 |
|
|
|
35 |
/*
|
|
|
36 |
DUMP FILE VERSION NUMBER
|
|
|
37 |
|
|
|
38 |
These macros give the major and minor version numbers for the dump
|
|
|
39 |
files. The minor number is increased for upwardly compatible changes
|
|
|
40 |
and the major number for incompatible changes.
|
|
|
41 |
*/
|
|
|
42 |
|
|
|
43 |
#define DUMP_major ( ( unsigned long ) ( DUMP_VERSION / 100 ) )
|
|
|
44 |
#define DUMP_minor ( ( unsigned long ) ( DUMP_VERSION % 100 ) )
|
|
|
45 |
|
|
|
46 |
|
|
|
47 |
/*
|
|
|
48 |
DUMP FILE DECLARATIONS
|
|
|
49 |
|
|
|
50 |
The routines in this module are concerned with the output of the
|
|
|
51 |
status dump file.
|
|
|
52 |
*/
|
|
|
53 |
|
|
|
54 |
extern void dump_declare PROTO_S ( ( IDENTIFIER, LOCATION *, int ) ) ;
|
|
|
55 |
extern void dump_undefine PROTO_S ( ( IDENTIFIER, LOCATION *, int ) ) ;
|
|
|
56 |
extern void dump_destr PROTO_S ( ( IDENTIFIER, LOCATION * ) ) ;
|
|
|
57 |
extern void dump_token PROTO_S ( ( IDENTIFIER, IDENTIFIER ) ) ;
|
|
|
58 |
extern void dump_instance PROTO_S ( ( IDENTIFIER, TYPE, TYPE ) ) ;
|
|
|
59 |
extern void dump_use PROTO_S ( ( IDENTIFIER, LOCATION *, int ) ) ;
|
|
|
60 |
extern void dump_call PROTO_S ( ( IDENTIFIER, LOCATION *, int ) ) ;
|
|
|
61 |
extern void dump_override PROTO_S ( ( IDENTIFIER, IDENTIFIER ) ) ;
|
|
|
62 |
extern void dump_alias PROTO_S ( ( IDENTIFIER, IDENTIFIER, LOCATION * ) ) ;
|
|
|
63 |
extern void dump_using PROTO_S ( ( NAMESPACE, NAMESPACE, LOCATION * ) ) ;
|
|
|
64 |
extern void dump_builtin PROTO_S ( ( IDENTIFIER ) ) ;
|
|
|
65 |
extern void dump_token_param PROTO_S ( ( IDENTIFIER ) ) ;
|
|
|
66 |
extern void dump_promote PROTO_S ( ( INT_TYPE, INT_TYPE ) ) ;
|
|
|
67 |
extern void dump_base PROTO_S ( ( CLASS_TYPE ) ) ;
|
|
|
68 |
extern void dump_begin_scope PROTO_S ( ( IDENTIFIER, NAMESPACE, NAMESPACE, LOCATION * ) ) ;
|
|
|
69 |
extern void dump_end_scope PROTO_S ( ( IDENTIFIER, NAMESPACE, LOCATION * ) ) ;
|
|
|
70 |
extern void dump_string_lit PROTO_S ( ( string, string, unsigned ) ) ;
|
|
|
71 |
extern void dump_include PROTO_S ( ( LOCATION *, string, int, int ) ) ;
|
|
|
72 |
extern int dump_error PROTO_S ( ( ERROR, LOCATION *, int, int ) ) ;
|
|
|
73 |
extern void init_dump PROTO_S ( ( string, string ) ) ;
|
|
|
74 |
extern void term_dump PROTO_S ( ( void ) ) ;
|
|
|
75 |
|
|
|
76 |
#ifdef FILE_INCLUDED
|
|
|
77 |
extern void dump_start PROTO_S ( ( LOCATION *, INCL_DIR * ) ) ;
|
|
|
78 |
extern void dump_end PROTO_S ( ( LOCATION * ) ) ;
|
|
|
79 |
#endif
|
|
|
80 |
|
|
|
81 |
extern ulong dump_id_next ;
|
|
|
82 |
extern int dump_anon_class ;
|
|
|
83 |
extern int dump_template ;
|
|
|
84 |
extern int dump_implicit ;
|
|
|
85 |
|
|
|
86 |
extern int do_dump ;
|
|
|
87 |
extern int do_error ;
|
|
|
88 |
extern int do_header ;
|
|
|
89 |
extern int do_keyword ;
|
|
|
90 |
extern int do_local ;
|
|
|
91 |
extern int do_macro ;
|
|
|
92 |
extern int do_scope ;
|
|
|
93 |
extern int do_string ;
|
|
|
94 |
extern int do_usage ;
|
|
|
95 |
|
|
|
96 |
|
|
|
97 |
#endif
|