| Line | |
|---|
| 1 | program bgraxbutton_test;
|
|---|
| 2 |
|
|---|
| 3 | {$mode objfpc}{$H+}
|
|---|
| 4 |
|
|---|
| 5 | uses {$IFDEF UNIX} {$IFDEF UseCThreads}
|
|---|
| 6 | cthreads, {$ENDIF} {$ENDIF}
|
|---|
| 7 | Interfaces, // this includes the LCL widgetset
|
|---|
| 8 | Forms,
|
|---|
| 9 | umain { you can add units after this };
|
|---|
| 10 |
|
|---|
| 11 | {$R *.res}
|
|---|
| 12 |
|
|---|
| 13 | begin
|
|---|
| 14 | Application.Title := 'Button Editor 1.1 by Lainz';
|
|---|
| 15 | RequireDerivedFormResource := True;
|
|---|
| 16 | Application.Initialize;
|
|---|
| 17 | Application.CreateForm(TfrmButtonEditor, frmButtonEditor);
|
|---|
| 18 | Application.Run;
|
|---|
| 19 | end.
|
|---|
| 20 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.