home *** CD-ROM | disk | FTP | other *** search
- LIBRARY exdll;
- { This is the DLL that contents:
- 1. the unit DLLTMAIN, which contents the procedures, whose runtime have to
- be measured.
- 2. It includes the ProDelphi - unit ProfInt (after Profiling), it's the
- interface-unit to the library ProfMeas that contents the measuring
- routines.
- 3. The unit ProfOnli is not included, because if an online operation
- window is necessary, the main program will know.
- 4. All necessary modifications will be done automatically by the profiler }
- USES
- TESTPROC, { procedures to be measured }
- SysUtils,
- Classes;
-
- EXPORTS
- { The procedure START is the procedure, whose runtime has to be measured }
-
- Start;
-
- BEGIN
- END.