program CoolDisk; {$mode objfpc}{$H+} uses {$IFDEF UNIX} cthreads, {$ENDIF} Interfaces, // this includes the LCL widgetset Forms, tachartlazaruspkg, UFormBenchmark, UProject, UConfig, UBlockMap, UDriveScan, Common, TemplateGenerics, UFormOperation, UFormProject, UFormMain, UPhysDrive, UCore; {$R *.res} begin RequireDerivedFormResource:=True; Application.Initialize; Application.CreateForm(TCore, Core); Application.CreateForm(TFormMain, FormMain); Application.CreateForm(TFormBenchmark, FormBenchmark); Application.CreateForm(TFormOperation, FormOperation); Application.CreateForm(TFormProject, FormProject); Application.Run; end.