home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D / SNPTST20.ZIP / TestDLL / TestMain.pas < prev   
Pascal/Delphi Source File  |  1998-07-25  |  788b  |  50 lines

  1. unit TestMain;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     Button1: TButton;
  12.     Button2: TButton;
  13.     procedure Button1Click(Sender: TObject);
  14.     procedure Button2Click(Sender: TObject);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   Form1: TForm1;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. procedure DLLLeaker; external 'leakydll.dll' name 'LeakyProc';
  29.  
  30. procedure LocalLeaker;
  31. var
  32.   p, q: pointer;
  33. begin
  34.   GetMem(q,333);
  35.   GetMem(p,200);
  36.   FreeMem(q);
  37. end;
  38.  
  39. procedure TForm1.Button1Click(Sender: TObject);
  40. begin
  41.   LocalLeaker;
  42. end;
  43.  
  44. procedure TForm1.Button2Click(Sender: TObject);
  45. begin
  46.   DLLLeaker;
  47. end;
  48.  
  49. end.
  50.