2 |
7u83 |
1 |
# Crown Copyright (c) 1997
|
|
|
2 |
#
|
|
|
3 |
# This TenDRA(r) Computer Program is subject to Copyright
|
|
|
4 |
# owned by the United Kingdom Secretary of State for Defence
|
|
|
5 |
# acting through the Defence Evaluation and Research Agency
|
|
|
6 |
# (DERA). It is made available to Recipients with a
|
|
|
7 |
# royalty-free licence for its use, reproduction, transfer
|
|
|
8 |
# to other parties and amendment for any purpose not excluding
|
|
|
9 |
# product development provided that any such use et cetera
|
|
|
10 |
# shall be deemed to be acceptance of the following conditions:-
|
|
|
11 |
#
|
|
|
12 |
# (1) Its Recipients shall ensure that this Notice is
|
|
|
13 |
# reproduced upon any copies or amended versions of it;
|
|
|
14 |
#
|
|
|
15 |
# (2) Any amended version of it shall be clearly marked to
|
|
|
16 |
# show both the nature of and the organisation responsible
|
|
|
17 |
# for the relevant amendment or amendments;
|
|
|
18 |
#
|
|
|
19 |
# (3) Its onward transfer from a recipient to another
|
|
|
20 |
# party shall be deemed to be that party's acceptance of
|
|
|
21 |
# these conditions;
|
|
|
22 |
#
|
|
|
23 |
# (4) DERA gives no warranty or assurance as to its
|
|
|
24 |
# quality or suitability for any purpose and DERA accepts
|
|
|
25 |
# no liability whatsoever in relation to any use to which
|
|
|
26 |
# it may be put.
|
|
|
27 |
#
|
|
|
28 |
%%
|
|
|
29 |
#ifndef __X11_P_HEADERS
|
|
|
30 |
#error Unauthorized access to X11 P headers
|
|
|
31 |
#endif
|
|
|
32 |
%%
|
|
|
33 |
|
|
|
34 |
+USE "x5/t", "X11/Intrinsic.h" ;
|
|
|
35 |
+USE "x5/t", "X11/Constraint.h" ;
|
|
|
36 |
+USE "x5/t", "X11/IntrinsicP.h", "intrinsix" ;
|
|
|
37 |
+USE "x5/t", "X11/CoreP.h" ;
|
|
|
38 |
+USE "x5/t", "X11/CompositeP.h" ;
|
|
|
39 |
|
|
|
40 |
|
|
|
41 |
# ConstraintClassPart Structure (1.4.3.1)
|
|
|
42 |
|
|
|
43 |
+FIELD ( struct ) ConstraintClassPart := {
|
|
|
44 |
XtResourceList resources ;
|
|
|
45 |
Cardinal num_resources ;
|
|
|
46 |
Cardinal constraint_size ;
|
|
|
47 |
XtInitProc initialize ;
|
|
|
48 |
XtWidgetProc destroy ;
|
|
|
49 |
XtSetValuesFunc set_values ;
|
|
|
50 |
XtPointer extension ;
|
|
|
51 |
} ;
|
|
|
52 |
|
|
|
53 |
+FIELD ( struct ) ConstraintClassExtensionRec := {
|
|
|
54 |
XtPointer next_extension ;
|
|
|
55 |
XrmQuark record_type ;
|
|
|
56 |
long version ;
|
|
|
57 |
Cardinal record_size ;
|
|
|
58 |
XtArgsProc get_values_hook ;
|
|
|
59 |
} ;
|
|
|
60 |
|
|
|
61 |
+TYPEDEF ConstraintClassExtensionRec *ConstraintClassExtension ;
|
|
|
62 |
+CONST long XtConstraintExtensionVersion ;
|
|
|
63 |
|
|
|
64 |
+FIELD ConstraintClassRec := {
|
|
|
65 |
CoreClassPart core_class ;
|
|
|
66 |
CompositeClassPart composite_class ;
|
|
|
67 |
ConstraintClassPart constraint_class ;
|
|
|
68 |
} ;
|
|
|
69 |
|
|
|
70 |
+EXP lvalue ConstraintClassRec constraintClassRec ;
|
|
|
71 |
|
|
|
72 |
|
|
|
73 |
# ConstraintPart Structure (1.4.2.2)
|
|
|
74 |
|
|
|
75 |
+TYPE ( struct ) ConstraintPart ;
|
|
|
76 |
+IF 0
|
|
|
77 |
+FIELD ConstraintPart {
|
|
|
78 |
int empty ;
|
|
|
79 |
} ;
|
|
|
80 |
+ENDIF
|
|
|
81 |
|
|
|
82 |
+FIELD ConstraintRec := {
|
|
|
83 |
CorePart core ;
|
|
|
84 |
CompositePart composite ;
|
|
|
85 |
ConstraintPart constraint ;
|
|
|
86 |
} ;
|