I am now in this version, and I have a small "big" request.
All default Event, are defined in the LFSlapper.lpr main file, and we can overwrite them in our includes.
I do not like to modify default files, and I would like to keep all customization in my own lpr without loosing default or "new release" default modification in the LFS Lapper.
Is it or would it be possible to have an implementation which allow to call back default event:
Here is an example:
LFSLapper.lpr:
Event OnLapperStart ()
do 1;
do 2;
etc..
End of Event
and my own lpr
Event OnLapperStart () #overwrite of default
LFSlapper.OnLapperStart();
do my own 1
do my own 2:
etc;
endofEvent
this execute first the default content and then my own additional code.