|
|
1.1 ! root 1: /* ! 2: global.h -- global type definitions and abbreviations ! 3: Created by Microsoft Corporation, 1989 ! 4: */ ! 5: typedef struct _COM { /* com */ ! 6: char szPort[5]; ! 7: USHORT usBaud; ! 8: BYTE bParity, bData, bStop; ! 9: BOOL fWrap; ! 10: BOOL fSoftware; ! 11: BOOL fHardware; ! 12: } COM; ! 13: ! 14: #define MAXLINELEN 80 ! 15: typedef struct _LINEINFO { /* li */ ! 16: char szText[MAXLINELEN]; ! 17: USHORT cch; ! 18: BOOL fComplete; ! 19: BOOL fDrawn; ! 20: } LineInfo; ! 21: typedef LineInfo far *Line; ! 22: ! 23: #define Min(x,y) (((x) < (y)) ? (x) : (y)) ! 24: #define Max(x,y) (((x) > (y)) ? (x) : (y))
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.