home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / vp21beta.zip / ARTLSRC.RAR / BLDRTL.PAS < prev    next >
Pascal/Delphi Source File  |  2000-08-15  |  1KB  |  45 lines

  1. //█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
  2. //█                                                       █
  3. //█      Virtual Pascal Runtime Library.  Version 2.1.    █
  4. //█      RTL Build unit                                   █
  5. //█      ─────────────────────────────────────────────────█
  6. //█      Copyright (C) 1995-2000 vpascal.com              █
  7. //█                                                       █
  8. //▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  9.  
  10. unit BldRtl;
  11.  
  12. interface
  13.  
  14. {&Use32-}
  15.  
  16. uses
  17.   {$ifdef OS2}
  18.     // OS/2 interface units
  19.     Os2Def, Os2Base, Os2PmApi, Os2MM, 
  20.   {$endif}
  21.  
  22.   {$ifdef WIN32}
  23.     // Win32 interface units
  24.     CommDlg, Winsock, WinSpool, ShellApi,
  25.   {$endif}
  26.  
  27.   // Virtual Pascal units
  28.   Use16, Use32, Long32, ExeHdr, VpSysLow, HeapChk, 
  29.   {$IFNDEF LINUX} VpUsrLow, VPUtils, Rexx, {$ENDIF}
  30.  
  31.   // Text mode units
  32.   Dos, Strings, 
  33.   {$IFNDEF LINUX} Crt, {$ENDIF} 
  34.  
  35.   // Graphical units
  36.   WinCrt,
  37.   {$ifdef os2} PmObj, {$endif}
  38.   WinDos,
  39.  
  40.   // Delphi/Windows interface units
  41.   Windows, Consts, TypInfo, SysUtils, Classes, Math;
  42.  
  43. implementation
  44. end.
  45.