Alexander c585c2f0cb Initial
Исходный код версии 2.0
2022-05-04 07:31:33 +03:00

13 lines
321 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);
Application.Run;
end.