1 ;/* BEGIN INCLUDE FILE ws_fgb.mac */
 2 
 3 ; HISTORY COMMENTS:
 4 ;  1) change(86-06-01,Westcott), approve(87-07-13,mcr7580),
 5 ;     audit(87-07-13,Leskiw), install(87-08-07,MR12.1-1072):
 6 ;     Created.
 7 ;                                                      END HISTORY COMMENTS
 8 
 9 ;/* : FUNCTION
10 ;
11 ;FGBSTR structure Defines the foreground buffer structure the foreground
12 ;buffer is a linked list that contains individual packets received from
13 ;the remote system.
14 ;
15 ;Equivalent include file ws_fgb.h
16 ;*/
17 
18 fgbstr  struc
19 fgb_next        dw      ?       ; pointer to next structure
20 fgb_length      dw      ?       ; length of data in buffer
21 fgb_minor       db      ?       ; minor capability number
22 fgb_char        db      ?       ; first character in buffer
23 fgbstr  ends
24 
25 ;/* END INCLUDE FILE ws_fgb.mac */
26 ^Z