Исходный код версии 2.0
This commit is contained in:
2022-05-04 07:31:33 +03:00
parent 977c4a728b
commit c585c2f0cb
1423 changed files with 593425 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
program cdejecter_gui;
{$mode delphi}
{$codepage UTF8}
uses Interfaces, Forms, kernel, cde_MainForm, Dialogs, ch_languageform,
cde_LinkCreatorForm, cde_DriveAdderForm, cde_loadingform, cde_disc_frame;
{$R *.res}
begin
Application.Title:= 'CD Ejecter';
RequireDerivedFormResource:= True;
Application.Initialize;
Application.CreateForm(Tcde_Main, cde_Main);
Application.CreateForm(Tcde_loadingfrm, cde_loadingfrm);
Application.CreateForm(TCh_language, Ch_language);
Application.CreateForm(Tcde_LinkCreatorFrm, cde_LinkCreatorFrm);
Application.CreateForm(Tcde_DriveAdderFrm, cde_DriveAdderFrm);
UpdateLanguage;
Application.Run;
end.