1
2
3 dcl lmdp pointer;
4 dcl 1 lmd aligned based (lmdp),
5 2 dialup_info unaligned like dialup_info,
6 2 mgr_ev_chn fixed bin (71),
7 2 mgr_pid bit (36) aligned,
8 2 max_frame_size fixed bin,
9 2 pad fixed bin (35),
10 2 window uns fixed bin (3),
11 2 devx fixed bin,
12 2 sc_devx fixed bin,
13 2 activate_order aligned like LAP_ACTIVATE,
14 2 state fixed bin (4),
15 2 flags,
16 3 disc_first bit (1) unaligned,
17 3 started bit (1) unaligned,
18 3 listen bit (1) unaligned,
19 3 active bit (1) unaligned,
20 3 alt_seq bit (1) unaligned,
21 3 send_output bit (1) unaligned,
22 3 output_ready bit (1) unaligned,
23 3 have_data bit (1) unaligned,
24 3 timer_mode bit (1) unaligned,
25 3 timer_send bit (1) unaligned,
26 3 pad bit (26) unaligned,
27 2 reset_count fixed bin (35),
28 2 seq_offset unsigned fixed bin (3),
29 2 ack_frame unsigned fixed bin (3),
30 2 send_frame unsigned fixed bin (3),
31 2 next_send_frame unsigned fixed bin (3),
32 2 last_frame unsigned fixed bin (3),
33 2 next_buffer unsigned fixed bin (18),
34 2 q_frames unsigned fixed bin (3),
35 2 frame (0:7),
36 3 time_entered fixed bin (71),
37 3 time_sent fixed bin (71),
38 3 chain unsigned fixed bin (18),
39 2 saved_meters_ptr ptr,
40 2 meters like lap_mpx_meters;
41
42 dcl (
43 HUNG_UP init (0),
44 LISTENING init (1),
45 DIALED init (2),
46 SETUP init (3),
47 LINK_UP init (4)
48 ) fixed bin (4) static options (constant);
49
50 %include lap_mpx_meters;
51
52