lazarus/components/debuggerintf/dbgintfbasetypes.pas
martin cbc3a550d8 Debugger: Started DebuggerIntf package
git-svn-id: trunk@44075 -
2014-02-14 23:11:12 +00:00

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.