HeapSetInformation function kernel32

int HeapSetInformation(
  1. int HeapHandle,
  2. int HeapInformationClass,
  3. Pointer<NativeType> HeapInformation,
  4. int HeapInformationLength
)

Enables features for a specified heap.

BOOL HeapSetInformation(
  HANDLE                 HeapHandle,
  HEAP_INFORMATION_CLASS HeapInformationClass,
  PVOID                  HeapInformation,
  SIZE_T                 HeapInformationLength
);

Implementation

int HeapSetInformation(int HeapHandle, int HeapInformationClass,
        Pointer HeapInformation, int HeapInformationLength) =>
    _HeapSetInformation(HeapHandle, HeapInformationClass, HeapInformation,
        HeapInformationLength);