You've already forked lazarus-ccr
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
19 lines
334 B
ObjectPascal
19 lines
334 B
ObjectPascal
![]() |
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.
|
||
|
|