RtlDecompressChunks - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

NTSYSAPI
NTSTATUS
NTAPI
RtlDecompressChunks(
    _Out_writes_bytes_(UncompressedBufferSize) PUCHAR UncompressedBuffer,
    _In_ ULONG UncompressedBufferSize,
    _In_reads_bytes_(CompressedBufferSize) PUCHAR CompressedBuffer,
    _In_ ULONG CompressedBufferSize,
    _In_reads_bytes_(CompressedTailSize) PUCHAR CompressedTail,
    _In_ ULONG CompressedTailSize,
    _In_ PCOMPRESSED_DATA_INFO CompressedDataInfo
    );

#endif

View code on GitHub
// ntifs.h

NTSYSAPI NTSTATUS RtlDecompressChunks(
  PUCHAR                UncompressedBuffer,
  ULONG                 UncompressedBufferSize,
  PUCHAR                CompressedBuffer,
  ULONG                 CompressedBufferSize,
  PUCHAR                CompressedTail,
  ULONG                 CompressedTailSize,
  PCOMPRESSED_DATA_INFO CompressedDataInfo
);
View the official Windows Driver Kit DDI reference

NtDoc

This function is documented in Windows Driver Kit.

Windows Driver Kit DDI reference (nf-ntifs-rtldecompresschunks)

RtlDecompressChunks function

Description

The RtlDecompressChunks routine is reserved for system use.

Parameters

UncompressedBuffer

Reserved.

UncompressedBufferSize

Reserved.

CompressedBuffer

Reserved.

CompressedBufferSize

Reserved.

CompressedTail

Reserved.

CompressedTailSize

Reserved.

CompressedDataInfo

Reserved.

Return value

Reserved.