/packages/pasjpeg/examples/testproj.dpr
Pascal | 13 lines | 9 code | 3 blank | 1 comment | 0 complexity | 99a8752170b95d6dc6d35edb70b2940c MD5 | raw file
Possible License(s): LGPL-2.0, LGPL-2.1, LGPL-3.0
1program testproj; 2 3uses 4 Forms, 5 test1 in 'test1.pas' {Form1}; 6 7{$R *.RES} 8 9begin 10 Application.Initialize; 11 Application.CreateForm(TForm1, Form1); 12 Application.Run; 13end.