home *** CD-ROM | disk | FTP | other *** search
- Unit FW;
-
- {***********************************************}
- {**** POPTEXT Version 2.1 ****}
- {**** (C) 1989 Tone Zone Computing ****}
- {**** FW - Fast ScreenWrite Utility ****}
- {**** Interface section for Unit FW ****}
- {***********************************************}
-
- {***********************************************}
- {** License to incorportate FW.TPU to ***}
- {** REGISTERED USERS only (See Register.doc)***}
- {***********************************************}
-
-
- Interface
-
- Uses Crt;
-
- Procedure FastWrite(buf:String;Y,X,C:Byte);
- {Usage: Fastwrite(String,Row,Column,attr);
- Writes String to specified coordinates using attr for attribute.
- Interprets #129 as HighVideo and
- #130 as Lowvideo in text stream}
-
- Procedure ChangeAttr(L,Y,X,C:Byte);
- {Usage: ChangeAttr(Length,Row,Column,attr);
- Sets specified length of Row,Column to specified Attribute}
-
-
- Procedure SetFWColors(LoVid,HiVid,InvLo,InvHi:Byte);
- {Usage: SetFWColors(Lo,Hi,ILow,IHigh);
- Sets the attribute values for global variables LowVid,HighVid,
- InvHigh,InvLow. Default values are 7,11,112,11 respectively}
-
-
- Var Highvid,
- Lowvid,
- InvHigh,
- InvLow:byte;
-
- {Contain the values used by Fastwrite in interpreting the #129 and #130
- Highlight values. Can be used as parameters to Attrs of ChangeAttr and
- Fastwrite to increase monitor compatability. Default values are set
- to Highvid = 11
- Lowvid = 7
- InvLow = 112
- InvHigh = 11}
-
-
- implementation
-