1
2
3 dcl 1 capabilities_info aligned based (capabilities_info_ptr),
4 2 version fixed bin,
5 2 screensize,
6 3 columns fixed bin,
7 3 rows fixed bin,
8 2 flags,
9 3 scroll_region bit (1) unal,
10 3 insert_chars bit (1) unal,
11 3 insert_mode bit (1) unal,
12 3 delete_chars bit (1) unal,
13 3 overprint bit (1) unal,
14 3 pad bit (31) unal,
15 2 line_speed fixed bin;
16
17 dcl (capabilities_info_version_1, capabilities_info_version)
18 fixed bin internal static init (1) options (constant);
19 dcl capabilities_info_ptr
20 pointer;
21
22