lazarus/lcl/interfaces/gtk/tests/lclclipboardtest.lpr
2006-04-15 15:18:34 +00:00

19 lines
321 B
ObjectPascal

program LCLClipboardTest;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, LCLClipboardUnit;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.