cd_ejecter/sources/cdejecter_gui/__history/cdejecter_gui.lpr;10
Alexander c585c2f0cb Initial
Исходный код версии 2.0
2022-05-04 07:31:33 +03:00

16 lines
392 B
Plaintext

program cdejecter_gui;
{$mode delphi}
{$codepage UTF8}
uses Interfaces, Forms, kernel, cde_MainForm, Dialogs, cde_disc_frame,
cde_SettingsForm;
{$R *.res}
begin
Application.Title:= 'CD Ejecter';
RequireDerivedFormResource:= True;
Application.Initialize;
Application.CreateForm(Tcde_Main, cde_Main);
UpdateLanguage;
Application.CreateForm(Tcde_Settings, cde_Settings);
Application.Run;
end.