BSOne.SFC/Tocsg.Module/ScreenLock/ScreenLock.dpr

18 lines
389 B
Plaintext

program ScreenLock;
uses
Vcl.Forms,
DScrLckMain in 'DScrLckMain.pas' {DlgScrLckMain},
DLockScreen in 'DLockScreen.pas' {DlgLockScreen},
KeyMonDLL in '..\KeyMon\EXE_KeyMon\KeyMonDLL.pas',
Define in 'Define.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TDlgScrLckMain, DlgScrLckMain);
Application.Run;
end.