Files
lazarus-ccr/components/mplayer/examples/FullFeatured/mplayerTestHarness.lpr

22 lines
397 B
ObjectPascal
Raw Permalink Normal View History

program mplayerTestHarness;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, FormMain, mplayercontrollaz
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.