23 lines
371 B
ObjectPascal
23 lines
371 B
ObjectPascal
program simpleplayer;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$DEFINE UseCThreads}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
cwstring, {$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
ctypes,
|
|
Forms,
|
|
main_sp { you can add units after this };
|
|
|
|
begin
|
|
Application.Title:='SimplePlayer';
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|
|
|