You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
628 B
28 lines
628 B
program deskewgui;
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}
|
|
clocale,
|
|
{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms,
|
|
{ you can add units after this }
|
|
DataModule, MainForm, AdvOptionsForm, AboutForm, Runner, Utils, Options,
|
|
Config;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title := 'Deskew GUI';
|
|
RequireDerivedFormResource:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TModule, Module);
|
|
Application.CreateForm(TFormMain, FormMain);
|
|
Application.CreateForm(TFormAdvOptions, FormAdvOptions);
|
|
Application.CreateForm(TFormAbout, FormAbout);
|
|
Application.Run;
|
|
end.
|
|
|