1 /* BEGIN include file ms_block_trailer_v2.incl.pl1 */
 2 
 3 dcl  tr_ptr ptr,                                            /* pointer to message block trailer area */
 4 
 5      1 ms_block_trailer_v2 aligned based (tr_ptr),          /* message block trailer structure */
 6      2 tr_pattern bit (36) aligned,                         /* for identifying beginning of trailer */
 7      2 f_offset bit (18) unaligned,                         /* offset to next logical message */
 8      2 b_offset bit (18) unaligned,                         /* offset to previous logical message */
 9      2 ms_size bit (18) unaligned,                          /* bit count of message */
10      2 time bit (54) unaligned,                             /* time message was sent */
11      2 ring_no bit (18) unaligned,                          /* validation level */
12      2 pad bit (18) unaligned,
13      2 sender_id char (32) aligned;                         /* id of message sender */
14 
15 /* END include file ms_block_trailer_v2.incl.pl1 */