cheat-engine/ProcessHandlerUnit.pas
cheatengine@gmail.com 4d297adfd2
2011-07-04 19:52:19 +00:00

28 lines
478 B
ObjectPascal

unit ProcessHandlerUnit;
{
Will handle all process specific stuff like openening and closing a process
The ProcessHandler variable will be in cefuncproc, but a tabswitch to another
process will set it to the different tab's process
}
interface
uses windows;
type TProcessHandler=class
private
public
processid: dword;
processhandle: THandle;
procedure Open;
end;
implementation
procedure TProcessHandler.Open;
begin
end;
end.