Discuss this help topic in SecureBlackbox Forum

TElBZip2DecompressingUnit.ProcessBlock

TElBZip2DecompressingUnit     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Decompresses a block of data.

Declaration

[C#]
    void ProcessBlock(byte[] Buffer, int Index, ref int Size);

[VB.NET]
    Sub ProcessBlock(ByVal Buffer As Byte(), ByVal Index As Integer, ByRef Size As Integer)

[Pascal]
    procedure ProcessBlock(const Buffer : ByteArray; Index : integer; var Size : integer); override;

[C++]
    void ProcessBlock(const std::vector<uint8_t> &Buffer, int32_t Index, int32_t &Size);

[PHP]
    void ProcessBlock(array of byte|string|NULL $Buffer, integer $Index, integer &$Size)

[Java]
    void processBlock(byte[] Buffer, int Index, int[] Size);

Parameters

  • Buffer - memory buffer with data to be processed.
  • Index - the index of the first byte of data block in buffer.
  • Size - the size of the data block.

Description

This method decompresses a block of data.

Discuss this help topic in SecureBlackbox Forum