DK11 for Delphi | GisTypes.TGIS_ReadWriteEvent | Constants | Enums | Classes | Prototypes | Records
Event handler for file Read/Write events for the purpose of decoding/encoding.
Available also on: Python.
// Delphi type TGIS_ReadWriteEvent = procedure ( _sender : TObject; _pos : LongInt; _buffer : Pointer; _count : Integer ) of object;
// C++ Builder typedef void (_closure *TGIS_ReadWriteEvent)( TObject* _sender, int _pos, void* _buffer, int _count );
Name | Type | Description |
---|---|---|
_sender | TObject | event originator |
_pos | LongInt | position of the buffer within the file |
_buffer | Pointer | buffer to be encoded/decoded |
_count | Integer | number of bytes within buffer |