home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l044 / 2.ddi / TURBO3.ZIP / TURBO3.INT < prev    next >
Encoding:
Text File  |  1990-10-23  |  894 b   |  33 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Turbo Pascal Version 6.0                        }
  5. {       3.0 Compatibility Unit                          }
  6. {                                                       }
  7. {       Copyright (C) 1987, 1990 Borland International  }
  8. {                                                       }
  9. {*******************************************************}
  10.  
  11. unit Turbo3;
  12.  
  13. {$D-,I-,S-}
  14.  
  15. interface
  16.  
  17. uses Crt;
  18.  
  19. var
  20.   Kbd: Text;
  21.   CBreak: Boolean absolute CheckBreak;
  22.  
  23. procedure AssignKbd(var F: Text);
  24. function MemAvail: Integer;
  25. function MaxAvail: Integer;
  26. function LongFileSize(var F): Real;
  27. function LongFilePos(var F): Real;
  28. procedure LongSeek(var F; Pos: Real);
  29. procedure NormVideo;
  30. procedure HighVideo;
  31. procedure LowVideo;
  32. function IOresult: Integer;
  33.