home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D / SNPTST20.ZIP / TestApp / LeakyApp.dpr < prev   
Text File  |  1998-07-25  |  204b  |  15 lines

  1. program LeakyApp;
  2.  
  3. uses
  4.   Forms,
  5.   LeakAppU in 'LeakAppU.pas' {Form1},
  6.   Snoop;
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.