Files
lazarus-ccr/components/playsoundpackage/latest_stable/demo/demo.lpr
gbamber c1f807e8f4 Changed folder structure
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5490 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2016-12-14 14:48:40 +00:00

23 lines
474 B
ObjectPascal

program demo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, runtimetypeinfocontrols, poweredby, umainform
{ you can add units after this };
{$R *.res}
begin
Application.Title:='PlaySound component demo';
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(Tmainform, mainform);
Application.Run;
end.