1
0
Files
applications
components
acs
orpheus
rgbgraphics
example
rgbexample.lpi
rgbexample.lpr
rgbunit.lfm
rgbunit.lrs
rgbunit.pas
splash_logo.xpm
COPYING.LGPL
COPYING.modifiedLGPL
lazrgbgraphics.lpk
lazrgbgraphics.pas
rgbgraphics.pas
rgbroutines.pas
rgbtypes.pas
rgbutils.pas
richview
rtfview
svn
tparadoxdataset
virtualtreeview
virtualtreeview-unstable
xdev_toolkit
examples
wst
lazarus-ccr/components/rgbgraphics/example/rgbexample.lpr

19 lines
334 B
ObjectPascal
Raw Normal View History

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