fpvviewer.lpr 372 B

1234567891011121314151617181920212223
  1. {
  2. FPVectorial example application for viewing vectorial images
  3. Author: Felipe Monteiro de Carvalho
  4. License: Public Domain
  5. }
  6. program fpvviewer;
  7. {$mode objfpc}{$H+}
  8. uses
  9. Interfaces, // this includes the LCL widgetset
  10. Forms, fpvv_mainform;
  11. //{$R *.res}
  12. begin
  13. Application.Initialize;
  14. Application.CreateForm(TfrmFPVViewer, frmFPVViewer);
  15. Application.Run;
  16. end.