Componentes.Terceros.jcl/official/2.1.1/experts/debug/tools/MapToJdbg.dpr
2010-01-18 16:51:36 +00:00

44 lines
3.0 KiB
ObjectPascal

{**************************************************************************************************}
{ }
{ 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 MAP files }
{ }
{**************************************************************************************************}
{ }
{ Last modified: $Date:: 2007-09-17 23:41:02 +0200 (lun., 17 sept. 2007) $ }
{ Revision: $Rev:: 2175 $ }
{ Author: $Author:: outchy $ }
{ }
{**************************************************************************************************}
program MapToJdbg;
uses
Forms,
MapToJdbgMain in 'MapToJdbgMain.pas' {MainForm};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'MAP to JDBG';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.