You've already forked lazarus-ccr
applications
bindings
components
Comba_Animation
aboutcomponent
acs
beepfp
callite
chelper
chemtext
cmdline
cmdlinecfg
colorpalette
cryptini
csvdocument
epiktimer
everettrandom
examplecomponent
latest_stable
updates
examplecomponent_icon.lrs
examplepackage.pas
myexamplecontrol.pas
myexamplepackage.lpk
myexamplepackage.pas
readme.txt
subcomponent.lpk
subcomponent.pas
umysubcomponent.pas
umysubcomponent_icon.lrs
exctrls
extrasyn
fpexif
fpsound
fpspreadsheet
fractions
freetypepascal
geckoport
gradcontrols
grid_semaphor
industrialstuff
iosdesigner
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazautoupdate
lazbarcodes
lazmapviewer
lclextensions
longtimer
manualdock
mbColorLib
mplayer
multithreadprocs
nvidia-widgets
onguard
orpheus
playsoundpackage
poweredby
powerpdf
rgbgraphics
richmemo
richview
rtfview
rx
scrolltext
smnetgradient
spktoolbar
splashabout
svn
systools
tdi
thtmlport
tparadoxdataset
tvplanit
xdev_toolkit
zlibar
zmsql
examples
image_sources
lclbindings
wst
22 lines
410 B
ObjectPascal
22 lines
410 B
ObjectPascal
![]() |
{ This file was automatically created by Lazarus. Do not edit!
|
||
|
This source is only used to compile and install the package.
|
||
|
}
|
||
|
|
||
|
unit examplepackage;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
MyExampleControl, LazarusPackageIntf;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
procedure Register;
|
||
|
begin
|
||
|
RegisterUnit('MyExampleControl', @MyExampleControl.Register);
|
||
|
end;
|
||
|
|
||
|
initialization
|
||
|
RegisterPackage('ExamplePackage', @Register);
|
||
|
end.
|