Function ntcore_sys::NT_GetEntryBooleanArray [] [src]

pub unsafe extern "C" fn NT_GetEntryBooleanArray(
    entry: NT_Entry,
    last_change: *mut u64,
    arr_size: *mut usize
) -> *mut NT_Bool

Returns a copy of the boolean array assigned to the entry name. If the entry name is not currently assigned, or is assigned to a different type, returns null.

@param entry entry handle @param last_change returns time in ms since the last change in the value @param arr_size returns the number of elements in the array @return pointer to the boolean array, or null if error

It is the caller's responsibility to free the array once its no longer needed. The NT_FreeBooleanArray() function is useful for this purpose.