mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 07:53:02 +02:00
22 lines
266 B
ObjectPascal
22 lines
266 B
ObjectPascal
unit DbgIntfBaseTypes;
|
|
(* DebuggerTypes
|
|
|
|
Basic types for any Pascal debugger. (not just IDE)
|
|
|
|
*)
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
// datatype pointing to data on the target
|
|
TDBGPtr = QWord;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|