21 lines
337 B
Plaintext
21 lines
337 B
Plaintext
program lst_strdes;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='LazScrollingText String Designer';
|
|
RequireDerivedFormResource := True;
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|
|
|