Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 rader
337 B

  1. program SimpleGDI;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}{$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}{$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Forms, uMainForm;
  9. {$R *.res}
  10. begin
  11. RequireDerivedFormResource := True;
  12. Application.Initialize;
  13. Application.CreateForm(TMainForm, MainForm);
  14. Application.Run;
  15. end.