home *** CD-ROM | disk | FTP | other *** search
- library TestEnvelope;
-
- {**************************************************************************
- PLEASE NOTE: ********
- This is a sample Envelope library created in our labs. For this sample
- to work in your machine, please invoke the Run|Parameters menu item, and
- change the Host application to where you have installed HawkEye.exe.
-
- HawkEye.exe will be residing in <INSTALLATION DIR>\HawkEye directory
- **************************************************************************}
-
- // PLEASE NOTE: ********
- // This project should be compiled with runtime packages
- // Please ensure that all the default runtime packages are in the package list
-
- // Add in your units which contain the components to this project
- // Invoke the menu Run|Parameters, and then set
- // Host Application to the RunTime.Exe application with a fully qualified path
- // Run Parameters to this dll with fully qualified path
-
- // DO NOT remove the line below, its required by the Envelope library expert
- {$E evl}
-
- uses
- SysUtils,
- Classes,
- TestComponent in 'TestComponent.pas';
-
- procedure GetRegisterProcs(RegisterProcs : TStringList); stdcall;
- begin
- // Add all the register procedures in your units to the RegisterProcs list
- // RegisterProcs.Add('UnitName.Register');
- // If the unitname is TestComponent then the call would be
- // RegisterProcs.Add('TestComponent.Register');
-
- // DO NOT remove the line below, its required by the Envelope library expert
- {**INSERT REGISTERPROCS -- BELOW THIS LINE**}
- RegisterProcs.Add('TestComponent.Register');
-
- end;
-
-
- // Add all the Regiser procedures of the all the units under the exports section
- // Example: UnitName.Register name 'UnitName.Register'
- // NOTE: Make sure that all the lines in the export section end
- // with a comma (,) except the last line, which should end
- // with a semicolon (;).
-
- exports
- // DO NOT remove the line below, its required by the Envelope library expert
- {**INSERT EXPORTREGISTERPROCS -- BELOW THIS LINE**}
- TestComponent.Register name 'TestComponent.Register',
- GetRegisterProcs name 'GetRegisterProcs';
-
-
- // Please add all the .dcr files here in the resource section
- // Example: {$R UnitName.dcr}
- {$R *.RES}
- // DO NOT remove the line below, its required by the Envelope library expert
- {**INSERT RESOURCEFILES -- BELOW THIS LINE**}
-
- begin
- end.
-
-