OnDataDecompress event/delegate/callback
Filter:
Pascal DLL C++ (DLL/Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
This event is fired when custom compression is used and data block must be decompressed.
Declaration
[Pascal]
TSolFSDecompressDataEvent = procedure(
Sender : TObject;
InData : Pointer;
InSize : LongWord;
OutData : Pointer;
var OutSize : LongWord;
var Result : LongInt) of object;
[DLL]
typedef Error (__stdcall *SolFSDecompressDataFunc)(
LongWord UserData,
void * InData,
unsigned long InSize,
void * OutData,
unsigned long * OutSize);
[C++ (DLL/Lib)]
typedef Error (__stdcall *SolFSDecompressDataFunc)(
LongWord UserData,
void * InData,
unsigned long InSize,
void * OutData,
unsigned long * OutSize);
[C++ (VCL)]
typedef void (__closure *TSolFSDecompressDataEvent)(
System::TObject* Sender,
void * InData,
unsigned long InSize,
void * OutData,
unsigned long OutSize,
unsigned long & Result);
[C++ (.NET)]
public __delegate void SolFSDecompressDataEvent(
SolFSStorage* Sender,
unsigned char inData __gc[],
unsigned char outData __gc[],
Int32 __gc &outSize,
Int32 __gc &result);
[C#]
public void SolFSDecompressDataEvent(
SolFS.SolFSStorage Sender,
uchar[] inData,
uchar[] outData,
ref int outSize,
ref int result);
[VB.NET]
Sub SolFSDecompressDataEvent(
ByVal Sender As SolFS.SolFSStorage,
ByVal inData As Byte(),
ByVal outData As Byte(),
ByRef outSize As Int32,
ByRef Result As Int32)
Parameters
- Sender - reference to the class that called the delegate/event handler
- InData - buffer with data to be decompressed
- InSize - length of the incoming buffer
- OutData - the buffer for decompressed data
- OutSize - actual size of decompressed data (see description)
- Result - out parameter (return value for DLL) where the application places the result of the operation. If you are working with file system, Win32 error code is a good candidate for placing to Result parameter. Otherwise you can use any other error codes, just be sure that 0 means success.
- [DLL] UserData - application-defined parameter which is specified when creating the storage and passed back to callback function.
Description
The event is fired when custom compression is used and the data block must be decompressed. Data to decompress is put to InData parameter. The size of the incoming data is placed to InSize. The event handler should put the result of decompression to the buffer referenced by OutData parameter. OutSize should be set to the number of bytes, put to OutData parameter.
See also
Information about callbacks (Driver Edition only) OnDataCompress
