mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
15 lines
309 B
ObjectPascal
15 lines
309 B
ObjectPascal
/// test the service remote control of the SQLite3Service unit
|
|
program ServiceTestSQL3;
|
|
|
|
uses
|
|
Forms,
|
|
ServiceTestForm in 'ServiceTestForm.pas' {MainServiceTest};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainServiceTest, MainServiceTest);
|
|
Application.Run;
|
|
end.
|