{**************************************************************************************************} { } { 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:: 2007-09-17 23:41:02 +0200 (lun., 17 sept. 2007) $ } { Revision: $Rev:: 2175 $ } { Author: $Author:: outchy $ } { } {**************************************************************************************************} 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.