fpvectorialconverter.lpr 275 B

12345678910111213141516
  1. program fpvectorialconverter;
  2. {$mode objfpc}{$H+}
  3. uses
  4. Interfaces, // this includes the LCL widgetset
  5. Forms, fpvc_mainform;
  6. {$R *.res}
  7. begin
  8. Application.Initialize;
  9. Application.CreateForm(TformVectorialConverter, formVectorialConverter);
  10. Application.Run;
  11. end.