You've already forked lazarus-ccr
aarre
applications
bindings
components
Comba_Animation
aboutcomponent
acs
beepfp
callite
chelper
chemtext
cmdline
cmdlinecfg
colorpalette
cryptini
csvdocument
epiktimer
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
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
svn
systools
tdi
thtmlport
tparadoxdataset
tvplanit
xdev_toolkit
zlibar
zmsql
examples
image_sources
lclbindings
wst
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6781 8e941d3f-bd1b-0410-a28a-d453659cc2b4
23 lines
464 B
ObjectPascal
23 lines
464 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit myexamplepackage;
|
|
|
|
{$warn 5023 off : no warning about unused units}
|
|
interface
|
|
|
|
uses
|
|
myexamplecontrol, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('myexamplecontrol', @myexamplecontrol.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('myexamplepackage', @Register);
|
|
end.
|