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 |
/**********************************************************************
|
|
|
32 |
$Author: release $
|
|
|
33 |
$Date: 1998/01/17 15:55:45 $
|
|
|
34 |
$Revision: 1.1.1.1 $
|
|
|
35 |
$Log: sortmacs.h,v $
|
|
|
36 |
* Revision 1.1.1.1 1998/01/17 15:55:45 release
|
|
|
37 |
* First version to be checked into rolling release.
|
|
|
38 |
*
|
|
|
39 |
* Revision 1.3 1997/12/04 19:50:10 pwe
|
|
|
40 |
* ANDF-DE V1.9
|
|
|
41 |
*
|
|
|
42 |
* Revision 1.2 1997/08/23 13:31:04 pwe
|
|
|
43 |
* no invert order, and initial ANDF-DE
|
|
|
44 |
*
|
|
|
45 |
* Revision 1.1 1995/04/06 10:43:34 currie
|
|
|
46 |
* Initial revision
|
|
|
47 |
*
|
|
|
48 |
***********************************************************************/
|
|
|
49 |
#ifndef sortmacs_key
|
|
|
50 |
#define sortmacs_key
|
|
|
51 |
|
|
|
52 |
|
|
|
53 |
|
|
|
54 |
/* code numbers for each of the TDF sorts */
|
|
|
55 |
|
|
|
56 |
#define ALIGNMENT_SORT 1
|
|
|
57 |
#define BITFIELD_VARIETY 2
|
|
|
58 |
#define BOOL 3
|
|
|
59 |
#define ERROR_TREATMENT 4
|
|
|
60 |
#define EXP_S 5
|
|
|
61 |
#define FLOATING_VARIETY 6
|
|
|
62 |
#define LABEL 7
|
|
|
63 |
#define NAT 8
|
|
|
64 |
#define NTEST 9
|
|
|
65 |
#define ROUNDING_MODE 10
|
|
|
66 |
#define SHAPE 11
|
|
|
67 |
#define SIGNED_NAT 12
|
|
|
68 |
#define TAG 13
|
|
|
69 |
#define VARIETY 14
|
|
|
70 |
#define TOKEN 15
|
|
|
71 |
#define AL_TAG 16
|
|
|
72 |
#define DIAG_FILENAME 17 /* OLD DIAGS */
|
|
|
73 |
#define DIAG_TYPE_SORT 18 /* OLD DIAGS */
|
|
|
74 |
#define FOREIGN 19
|
|
|
75 |
#define ACCESS_SORT 20
|
|
|
76 |
#define TRANSFER_MODE_SORT 21
|
|
|
77 |
#define PROCPROPS 22
|
|
|
78 |
#define STRING 23
|
|
|
79 |
#define DG_SORT 24 /* NEW DIAGS */
|
|
|
80 |
#define DG_DIM_SORT 25 /* NEW DIAGS */
|
|
|
81 |
#define DG_FILENAME_SORT 26 /* NEW DIAGS */
|
|
|
82 |
#define DG_IDNAME_SORT 27 /* NEW DIAGS */
|
|
|
83 |
#define DG_NAME_SORT 28 /* NEW DIAGS */
|
|
|
84 |
#define DG_TYPE_SORT 29 /* NEW DIAGS */
|
|
|
85 |
|
|
|
86 |
|
|
|
87 |
|
|
|
88 |
#endif
|