FMD2/updater/updater.lpr
riderkick afa98f2ed9 Updater: Add update FMD
- Fixing download procedure
- Change parameter of updater
- Add -a for update FMD
- Add -h for help
2015-04-12 21:42:31 +08:00

23 lines
446 B
ObjectPascal

program updater;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, uMain, uMessage;
{$R *.res}
begin
Application.Title:='Updater - Free Manga Downloader';
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmMessage, frmMessage);
Application.Run;
end.