home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / DOC.ZIP / TURBO3.INT < prev    next >
Encoding:
Text File  |  1992-10-27  |  895 b   |  34 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Turbo Pascal Version 7.0                        }
  5. {       Turbo 3.0 Compatibility Unit                    }
  6. {                                                       }
  7. {       Copyright (C) 1988,92 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.  
  34.