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

  1. //█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
  2. //█                                                       █
  3. //█      Virtual Pascal Runtime Library.  Version 2.1.    █
  4. //█      Debugger DLL library                             █
  5. //█      ─────────────────────────────────────────────────█
  6. //█      Copyright (C) 1998-2000 vpascal.com              █
  7. //█                                                       █
  8. //▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  9.  
  10. // Build this library with the conditional symbol VPDBGDLL defined
  11. // in Options->Compiler to build a new ODAPI Debugger DLL for VP
  12.  
  13. library VPDbgDll;
  14.  
  15. {$Export: ByName}
  16.  
  17. uses
  18.   VPDbgApi;
  19.  
  20. begin
  21. end.
  22.