1
2
3 dcl (graphic_operator_$dispatch,
4 go_$dispatch) entry (fixed bin (35));
5
6 dcl (graphic_operator_$dispatch_switch,
7 go_$dispatch_switch) entry (fixed bin (35), pointer);
8
9 dcl (graphic_operator_$reset,
10 go_$reset) entry;
11
12 dcl (graphic_operator_$set_immediacy,
13 go_$set_immediacy) entry (bit (1) aligned, bit (1) aligned, fixed bin (35));
14
15 dcl (graphic_operator_$replace_element,
16 go_$replace_element) entry (fixed bin (18), fixed bin, fixed bin (18), fixed bin (35)) returns (fixed bin (18));
17
18 dcl (graphic_operator_$replace_element_switch,
19 go_$replace_element_switch) entry (fixed bin (18), fixed bin, fixed bin (18), fixed bin (35), pointer) returns (fixed bin (18));
20
21 dcl (graphic_operator_$delete,
22 go_$delete) entry (fixed bin (18), fixed bin (35));
23
24 dcl (graphic_operator_$delete_switch,
25 go_$delete_switch) entry (fixed bin (18), fixed bin (35), pointer);
26
27 dcl (graphic_operator_$display,
28 go_$display) entry (fixed bin (18), fixed bin (35));
29
30 dcl (graphic_operator_$display_switch,
31 go_$display_switch) entry (fixed bin (18), fixed bin (35), pointer);
32
33 dcl (graphic_operator_$erase,
34 go_$erase) entry (fixed bin (35));
35
36 dcl (graphic_operator_$erase_switch,
37 go_$erase_switch) entry (fixed bin (35), pointer);
38
39 dcl (graphic_operator_$synchronize,
40 go_$synchronize) entry (fixed bin (35));
41
42 dcl (graphic_operator_$synchronize_switch,
43 go_$synchronize_switch) entry (fixed bin (35), pointer);
44
45 dcl (graphic_operator_$pause,
46 go_$pause) entry (fixed bin (35));
47
48 dcl (graphic_operator_$pause_switch,
49 go_$pause_switch) entry (fixed bin (35), pointer);
50
51 dcl (graphic_operator_$increment,
52 go_$increment) entry (fixed bin (18), fixed bin, float bin, fixed bin (18), fixed bin (35));
53
54 dcl (graphic_operator_$increment_switch,
55 go_$increment_switch) entry (fixed bin (18), fixed bin, float bin, fixed bin (18), fixed bin (35), pointer);
56
57 dcl (graphic_operator_$control,
58 go_$control) entry (fixed bin (18), fixed bin (35));
59
60 dcl (graphic_operator_$control_switch,
61 go_$control_switch) entry (fixed bin (18), fixed bin (35), pointer);
62
63 dcl (graphic_operator_$where,
64 go_$where) entry (fixed bin, float bin, float bin, float bin, fixed bin (35));
65
66 dcl (graphic_operator_$where_switch,
67 go_$where_switch) entry (fixed bin, float bin, float bin, float bin, fixed bin (35), pointer, pointer);
68
69 dcl (graphic_operator_$which,
70 go_$which) entry (fixed bin, fixed bin (18), fixed bin, fixed bin dimension (*), fixed bin (35));
71
72 dcl (graphic_operator_$which_switch,
73 go_$which_switch) entry (fixed bin, fixed bin (18), fixed bin, fixed bin dimension (*), fixed bin (35), pointer, pointer);
74
75 dcl (graphic_operator_$what,
76 go_$what) entry (fixed bin, fixed bin, fixed bin (35)) returns (fixed bin (18));
77
78 dcl (graphic_operator_$what_switch,
79 go_$what_switch) entry (fixed bin, fixed bin, fixed bin (35), pointer, pointer) returns (fixed bin (18));
80
81