1 /* BEGIN INCLUDE FILE  ws_fgb.h */
 2 
 3 /* HISTORY COMMENTS:
 4   1) change(86-05-31,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 Defines the foreground linked buffer structure.  Equivalent include file
12 ws_fgb.mac
13 */
14 
15 
16 /* foreground buffer structure */
17 struct fgbstr {
18    struct fgbstr   *fgb_next;       /* pointer to next fg buffer    */
19    int             fgb_length;      /* length of data in buffer     */
20    char            fgb_minor;       /* minor capability number      */
21    char            fgb_char[1];     /* first character if fg data   */
22 };
23 
24 /* END INCLUDE FILE  ws_fgb.h */
25 ^Z