home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 January
/
Chip_2003-01_cd1.bin
/
zkuste
/
delphi
/
nastroje
/
d234567
/
PRODEL.ZIP
/
DLLSUPP.ZIP
/
EXDLL.DPR
< prev
next >
Wrap
Text File
|
2000-05-19
|
718b
|
23 lines
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.