home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D
/
SNPTST20.ZIP
/
TestDLL
/
TestDLL.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-07-25
|
593b
|
42 lines
unit TestDLL;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure LocalCrap;
var
p, q: pointer;
begin
GetMem(q,333);
GetMem(p,200);
FreeMem(q);
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
LocalCrap;
end;
end.