2014-09-12 13:55:50 +00:00
|
|
|
program demo;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2014-09-14 15:04:10 +00:00
|
|
|
Forms, runtimetypeinfocontrols, poweredby, umainform
|
2014-09-12 13:55:50 +00:00
|
|
|
{ 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.
|
|
|
|
|