RtlCompressChunks - NtDoc

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

NTSYSAPI
NTSTATUS
NTAPI
RtlCompressChunks(
    _In_reads_bytes_(UncompressedBufferSize) PUCHAR UncompressedBuffer,
    _In_ ULONG UncompressedBufferSize,
    _Out_writes_bytes_(CompressedBufferSize) PUCHAR CompressedBuffer,
    _In_range_(>=, (UncompressedBufferSize - (UncompressedBufferSize / 16))) ULONG CompressedBufferSize,
    _Inout_updates_bytes_(CompressedDataInfoLength) PCOMPRESSED_DATA_INFO CompressedDataInfo,
    _In_range_(>, sizeof(COMPRESSED_DATA_INFO)) ULONG CompressedDataInfoLength,
    _In_ PVOID WorkSpace
    );

#endif

View code on GitHub
// ntifs.h

NTSYSAPI NTSTATUS RtlCompressChunks(
  PUCHAR                UncompressedBuffer,
  ULONG                 UncompressedBufferSize,
  PUCHAR                CompressedBuffer,
  ULONG                 CompressedBufferSize,
  PCOMPRESSED_DATA_INFO CompressedDataInfo,
  ULONG                 CompressedDataInfoLength,
  PVOID                 WorkSpace
);
View the official Windows Driver Kit DDI reference

NtDoc

This function is documented in Windows Driver Kit.

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

RtlCompressChunks function

Description

The RtlCompressChunks routine is reserved for system use.

Parameters

UncompressedBuffer

Reserved.

UncompressedBufferSize

Reserved.

CompressedBuffer

Reserved.

CompressedBufferSize

Reserved.

CompressedDataInfo

Reserved.

CompressedDataInfoLength

Reserved.

WorkSpace

Reserved.

Return value

Reserved.