/jcl/examples/windows/debug/tools/TlbToMap.dpr
https://github.com/the-Arioch/jcl · Pascal · 43 lines · 10 code · 4 blank · 29 comment · 0 complexity · efab5e13f7376b499529be2933d24bf5 MD5 · raw file
- {**************************************************************************************************}
- { }
- { Project JEDI Code Library (JCL) }
- { }
- { The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); }
- { you may not use this file except in compliance with the License. You may obtain a copy of the }
- { License at http://www.mozilla.org/MPL/ }
- { }
- { Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF }
- { ANY KIND, either express or implied. See the License for the specific language governing rights }
- { and limitations under the License. }
- { }
- { The Original Code is MapToJdbg.dpr. }
- { }
- { The Initial Developer of the Original Code is documented in the accompanying }
- { help file JCL.chm. Portions created by these individuals are Copyright (C) of these individuals. }
- { }
- {**************************************************************************************************}
- { }
- { Command line tool for converting JCL debug data created from TLB files }
- { }
- {**************************************************************************************************}
- { }
- { Last modified: $Date:: $ }
- { Revision: $Rev:: $ }
- { Author: $Author:: $ }
- { }
- {**************************************************************************************************}
- program TlbToMap;
- uses
- Forms,
- TlbToMapMain in 'TlbToMapMain.pas' {MainForm};
- {$R *.RES}
- begin
- Application.Initialize;
- Application.Title := 'TLB to MAP';
- Application.CreateForm(TMainForm, MainForm);
- Application.Run;
- end.