home *** CD-ROM | disk | FTP | other *** search
- Unit HelpDef;
-
- {***********************************************}
- {**** POPTEXT Version 2.1 ****}
- {**** (C) 1989 Tone Zone Computing ****}
- {**** ****}
- {**** Unit HelpDef - Definition of the ****}
- {**** POPTEXT Card ****}
- {***********************************************}
-
- Interface
-
- type Line = String[40];
- Page = Array[1..15] of Line;
- TraceBack = Array[0..255] of byte;
- PickitList = Array[1..15] of Word;
- HelpNode = Record
- HelpPage:Page;
- List :PickitList;
- Valid :word; {Bitmap of Valid Choices}
- PGItUP :word; {Where to go if PageUp (0 for none)}
- PGItDN :word; {Where to go for PageDn (0 for none)}
- end; {Record}
- HelpFile=File of HelpNode;
-