ntcore_sys

Function NT_AllocateIntegerArray

Source
pub unsafe extern "C" fn NT_AllocateIntegerArray(
    size: usize,
) -> *mut i64
Expand description

Allocates an array of integers. Note that the size is the number of elements, and not the specific number of bytes to allocate. That is calculated internally.

§Parameters

  • size: The number of elements the array will contain.

§Returns

The allocated integer array.

After use, the array should be freed using the NT_FreeIntegerArray() function.