home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / HAWKEYE / HAWKEVAL.ZIP / _SETUP.1 / TestEnvelope.dpr < prev    next >
Encoding:
Text File  |  1998-07-17  |  2.4 KB  |  65 lines

  1. library TestEnvelope;
  2.  
  3. {**************************************************************************
  4.  PLEASE NOTE: ********
  5.  This is a sample Envelope library created in our labs. For this sample
  6.  to work in your machine, please invoke the Run|Parameters menu item, and
  7.  change the Host application to where you have installed HawkEye.exe.
  8.  
  9.  HawkEye.exe will be residing in <INSTALLATION DIR>\HawkEye directory
  10. **************************************************************************}
  11.  
  12. // PLEASE NOTE: ********
  13. //     This project should be compiled with runtime packages
  14. //     Please ensure that all the default runtime packages are in the package list
  15.  
  16. // Add in your units which contain the components to this project
  17. // Invoke the menu Run|Parameters, and then set
  18. // Host Application to the RunTime.Exe application with a fully qualified path
  19. // Run Parameters to this dll with fully qualified path
  20.  
  21. // DO NOT remove the line below, its required by the Envelope library expert
  22. {$E evl}
  23.  
  24. uses
  25.   SysUtils,
  26.   Classes,
  27.   TestComponent in 'TestComponent.pas';
  28.  
  29. procedure GetRegisterProcs(RegisterProcs : TStringList); stdcall;
  30. begin
  31. //     Add all the register procedures in your units to the RegisterProcs list
  32. //         RegisterProcs.Add('UnitName.Register');
  33. //     If the unitname is TestComponent then the call would be
  34. //         RegisterProcs.Add('TestComponent.Register');
  35.  
  36. // DO NOT remove the line below, its required by the Envelope library expert
  37. {**INSERT REGISTERPROCS -- BELOW THIS LINE**}
  38.     RegisterProcs.Add('TestComponent.Register');
  39.  
  40. end;
  41.  
  42.  
  43. // Add all the Regiser procedures of the all the units under the exports section
  44. // Example:  UnitName.Register     name 'UnitName.Register'
  45. // NOTE: Make sure that all the lines in the export section end
  46. //       with a comma (,) except the last line, which should end
  47. //       with a semicolon (;).
  48.  
  49. exports
  50. // DO NOT remove the line below, its required by the Envelope library expert
  51. {**INSERT EXPORTREGISTERPROCS -- BELOW THIS LINE**}
  52.     TestComponent.Register            name 'TestComponent.Register',
  53.     GetRegisterProcs       name 'GetRegisterProcs';
  54.  
  55.  
  56. // Please add all the .dcr files here in the resource section
  57. // Example:  {$R UnitName.dcr}
  58. {$R *.RES}
  59. // DO NOT remove the line below, its required by the Envelope library expert
  60. {**INSERT RESOURCEFILES -- BELOW THIS LINE**}
  61.  
  62. begin
  63. end.
  64.  
  65.