mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
35 lines
628 B
ObjectPascal
Executable file
35 lines
628 B
ObjectPascal
Executable file
unit formPointerOrPointeeUnit;
|
|
|
|
{$MODE Delphi}
|
|
|
|
interface
|
|
|
|
uses
|
|
LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, LResources, ExtCtrls, betterControls;
|
|
|
|
type
|
|
|
|
{ TformPointerOrPointee }
|
|
|
|
TformPointerOrPointee = class(TForm)
|
|
btnFindWhatWritesPointer: TButton;
|
|
btnFindWhatWritesPointee: TButton;
|
|
Label1: TLabel;
|
|
Panel1: TPanel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
formPointerOrPointee: TformPointerOrPointee;
|
|
|
|
implementation
|
|
|
|
|
|
initialization
|
|
{$i formPointerOrPointeeUnit.lrs}
|
|
|
|
end.
|