Type SLGenericComplexGen.TSLComplexBufferGenEvent
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabPkg
Unit: SLGenericComplexGen
Contents |
Syntax
Delphi:
type procedure TSLComplexBufferGenEvent( Sender : TObject, var OutBuffer : ISLComplexBuffer, var Populated : Boolean, var Finished : Boolean ) of object;
C++ Builder:
typedef void __fastcall (__closure *TSLComplexBufferGenEvent)( TObject * Sender, ISLComplexBuffer &OutBuffer, bool &Populated, bool &Finished );
Summary
Event type to be used by the TSLGenericComplexGen.
Description
Defines a callback event to be used by the TSLGenericComplexGen . To provide data populate the OutBuffer. To force the generator to ignore the data request, set the Finished to False. If you decide not to populate the buffer set the Populated to False. In this case the generator will zero the buffer.