lazarus/components/leakview/leakview.pas
martin 4bdc01ca57 LeakView: Find addresses from exe (Resolve)
git-svn-id: trunk@37438 -
2012-05-27 22:57:22 +00:00

22 lines
387 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit leakview;
interface
uses
HeapTrcView, leakinfo, DbgInfoReader, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('HeapTrcView', @HeapTrcView.Register);
end;
initialization
RegisterPackage('leakview', @Register);
end.