mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-27 00:23:53 +02:00

- move examples from JPeg4Lazarus to common examples dir - remove JPeg4Lazarus package git-svn-id: trunk@13192 -
15 lines
200 B
ObjectPascal
15 lines
200 B
ObjectPascal
program JPEGExample;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms, MainForm;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TJPEGExampleForm, JPEGExampleForm);
|
|
Application.Run;
|
|
end.
|
|
|