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

  1. ProDelphi 6.0
  2.  
  3. Hints for measuring DLLS. This part is not in the program description !
  4.  
  5. For the purpose of showing how to measure procedures inside a DLL, I created
  6. a small project.
  7.  
  8. It consists of:
  9.  
  10.   1. Program
  11.      - STATIC.DPR   -  DPR-file of a main program that links a DLL statically
  12.      - STATMAIN.PAS -  Unit for STATIC
  13.      - STATMAIN.DFM -  Form for STATIC
  14.  
  15.      - DYNAMIC.DPR  -  DPR-file of a main program that links a DLL dynamically
  16.      - DYNAMAIN.PAS -  Unit for DYNAMIC
  17.      - DYNAMAIN.DFM -  Form for DYNAMIC
  18.  
  19.   2. DLL
  20.      - EXDLL.DPR    -  DPR-file to create the DLL
  21.      - TESTPROC.PAS -  Unit with the procedure to be measured
  22.  
  23. Just read the comments in the named PAS- and DPR-files, it shows all necessary
  24. actions that have to be done.
  25.  
  26.