home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 July / Chip_2000-07_cd.bin / sharewar / prodelph / DLLSUPP.ZIP / EXDLL.DPR < prev    next >
Text File  |  1999-02-12  |  718b  |  23 lines

  1. LIBRARY exdll;
  2. { This is the DLL that contents:
  3.    1. the unit DLLTMAIN, which contents the procedures, whose runtime have to
  4.       be measured.
  5.    2. It includes the ProDelphi - unit ProfInt (after Profiling), it's the 
  6.       interface-unit to the library ProfMeas that contents the measuring 
  7.       routines.
  8.    3. The unit ProfOnli is not included, because if an online operation
  9.       window is necessary, the main program will know. 
  10.    4. All necessary modifications will be done automatically by the profiler }
  11. USES
  12.   TESTPROC,  { procedures to be measured }
  13.   SysUtils,
  14.   Classes;
  15.  
  16. EXPORTS
  17. { The procedure START is the procedure, whose runtime has to be measured }
  18.  
  19.   Start;
  20.  
  21. BEGIN
  22. END.
  23.