/examples/dragimagelist/project1.lpr
http://github.com/graemeg/lazarus · Unknown · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · 6b177cd9e451536cfb80e566ed2aeb77 MD5 · raw file
- program project1;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms
- { you can add units after this }, Unit1;
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.