2009-10-12 11:04:52 -04:00
|
|
|
{
|
|
|
|
This file is part of the Mufasa Macro Library (MML)
|
2009-10-12 13:47:46 -04:00
|
|
|
Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer
|
2009-10-12 11:04:52 -04:00
|
|
|
|
|
|
|
MML is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
MML is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with MML. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
See the file COPYING, included in this distribution,
|
|
|
|
for details about the copyright.
|
|
|
|
|
|
|
|
SAMufasaGUI for the Mufasa Macro Library
|
|
|
|
}
|
|
|
|
|
2009-08-28 18:19:25 -04:00
|
|
|
program project1;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
2009-09-02 18:40:01 -04:00
|
|
|
cthreads, cmem,
|
2009-08-28 18:19:25 -04:00
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2010-01-01 12:08:13 -05:00
|
|
|
LResources ,
|
2010-01-01 10:32:23 -05:00
|
|
|
Forms, testunit, colourhistory, About, internets, debugimage,
|
2010-01-06 15:43:16 -05:00
|
|
|
framefunctionlist, simpleanalyzer, updater, updateform, simbasettings;
|
2010-01-01 12:08:13 -05:00
|
|
|
{$IFDEF WINDOWS}{$R project1.rc}{$ENDIF}
|
2009-08-28 18:19:25 -04:00
|
|
|
|
|
|
|
begin
|
2010-01-01 12:08:13 -05:00
|
|
|
{$I project1.lrs}
|
2010-01-01 10:32:23 -05:00
|
|
|
Application.Title:='Simba';
|
2009-08-28 18:19:25 -04:00
|
|
|
Application.Initialize;
|
2009-09-12 02:24:59 -04:00
|
|
|
|
2009-09-04 01:57:40 -04:00
|
|
|
Application.CreateForm(TForm1, Form1);
|
2009-11-07 10:40:45 -05:00
|
|
|
Application.CreateForm(TColourHistoryForm, ColourHistoryForm);
|
2009-11-12 16:20:29 -05:00
|
|
|
Application.CreateForm(TAboutForm, AboutForm);
|
2009-11-29 14:23:25 -05:00
|
|
|
Application.CreateForm(TDebugImgForm, DebugImgForm);
|
2009-12-31 17:37:09 -05:00
|
|
|
Application.CreateForm(TSimbaUpdateForm, SimbaUpdateForm);
|
2010-01-06 15:43:16 -05:00
|
|
|
Application.CreateForm(TSettingsForm, SettingsForm);
|
2009-08-28 18:19:25 -04:00
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|