mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
24 lines
350 B
ObjectPascal
24 lines
350 B
ObjectPascal
unit frmallocatememunit;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs;
|
|
|
|
type
|
|
Tfrmallocatemem = class(TForm)
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
frmallocatemem: Tfrmallocatemem;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|