17 lines
314 B
Plaintext
17 lines
314 B
Plaintext
program Exif;
|
|
|
|
uses
|
|
Forms,
|
|
umain in 'umain.pas' {MainForm},
|
|
umakernote in 'umakernote.pas' {fMakerNote};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'Exif Demo';
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.CreateForm(TfMakerNote, fMakerNote);
|
|
Application.Run;
|
|
end.
|