BSOne.SFC/Tocsg.Module/TocsgDRM/EXE_DrmAssistor/DrmAssistor.dpr

17 lines
334 B
Plaintext

program DrmAssistor;
uses
Vcl.Forms,
DDrmAssistorMain in 'DDrmAssistorMain.pas' {DlgDrmAssistorMain};
{$R *.res}
begin
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TDlgDrmAssistorMain, DlgDrmAssistorMain);
Application.Run;
end.