home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / graphics32 / Examples / Clx / Polygons_Ex / Polygons_Ex.dpr < prev    next >
Encoding:
Text File  |  2004-07-20  |  294 b   |  22 lines

  1. program Polygons_Ex;
  2.  
  3. {$I GR32.inc}
  4.  
  5. {%File '..\..\GR32.inc'}
  6.  
  7. uses
  8.   {$IFDEF CLX}
  9.   QForms,
  10.   {$ELSE}
  11.   Forms,
  12.   {$ENDIF}  
  13.   MainUnit in 'MainUnit.pas' {Form1};
  14.  
  15. {$R *.res}
  16.  
  17. begin
  18.   Application.Initialize;
  19.   Application.CreateForm(TForm1, Form1);
  20.   Application.Run;
  21. end.
  22.