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 REDECLARE_INCLUDED
|
|
|
32 |
#define REDECLARE_INCLUDED
|
|
|
33 |
|
|
|
34 |
|
|
|
35 |
/*
|
|
|
36 |
REDECLARATION ROUTINE DECLARATIONS
|
|
|
37 |
|
|
|
38 |
The routines in this module are concerned with processing redeclarations.
|
|
|
39 |
*/
|
|
|
40 |
|
|
|
41 |
extern IDENTIFIER find_previous PROTO_S ( ( TYPE, IDENTIFIER ) ) ;
|
|
|
42 |
extern IDENTIFIER unify_previous PROTO_S ( ( IDENTIFIER, TYPE, IDENTIFIER, int ) ) ;
|
|
|
43 |
extern IDENTIFIER unify_subsequent PROTO_S ( ( IDENTIFIER, TYPE, int ) ) ;
|
|
|
44 |
extern IDENTIFIER unify_extern PROTO_S ( ( IDENTIFIER, TYPE, NAMESPACE, LIST ( IDENTIFIER ) ) ) ;
|
|
|
45 |
extern IDENTIFIER hide_functions PROTO_S ( ( IDENTIFIER, IDENTIFIER, int ) ) ;
|
|
|
46 |
extern IDENTIFIER redecl_id PROTO_S ( ( DECL_SPEC, TYPE, IDENTIFIER, int, int ) ) ;
|
|
|
47 |
extern IDENTIFIER redecl_func PROTO_S ( ( DECL_SPEC, TYPE, IDENTIFIER, unsigned, IDENTIFIER *, int ) ) ;
|
|
|
48 |
extern IDENTIFIER redecl_inherit PROTO_S ( ( IDENTIFIER, QUALIFIER, int, int ) ) ;
|
|
|
49 |
extern IDENTIFIER alias_id PROTO_S ( ( IDENTIFIER, NAMESPACE, IDENTIFIER, int ) ) ;
|
|
|
50 |
extern int redecl_anon_union PROTO_S ( ( CLASS_TYPE, DECL_SPEC, IDENTIFIER ) ) ;
|
|
|
51 |
extern IDENTIFIER redeclare_id PROTO_S ( ( NAMESPACE, IDENTIFIER ) ) ;
|
|
|
52 |
extern int is_anon_member PROTO_S ( ( IDENTIFIER ) ) ;
|
|
|
53 |
extern void using_typename PROTO_S ( ( TYPE ) ) ;
|
|
|
54 |
extern IDENTIFIER using_identifier PROTO_S ( ( IDENTIFIER ) ) ;
|
|
|
55 |
extern IDENTIFIER copy_id PROTO_S ( ( IDENTIFIER, int ) ) ;
|
|
|
56 |
extern int is_tagged_type PROTO_S ( ( IDENTIFIER ) ) ;
|
|
|
57 |
extern DECL_SPEC adjust_linkage PROTO_S ( ( DECL_SPEC, int ) ) ;
|
|
|
58 |
extern DECL_SPEC find_linkage PROTO_S ( ( EXP ) ) ;
|
|
|
59 |
extern string linkage_string PROTO_S ( ( DECL_SPEC, CV_SPEC ) ) ;
|
|
|
60 |
extern void c_linkage PROTO_S ( ( IDENTIFIER, int ) ) ;
|
|
|
61 |
extern DECL_SPEC new_linkage ;
|
|
|
62 |
extern DECL_SPEC crt_linkage ;
|
|
|
63 |
|
|
|
64 |
|
|
|
65 |
#endif
|