Regular API function
simGetStackUInt8Table
Description
Retrieves a uint8 array from an array-type table at the top of the stack. Table values that are not numbers are converted to 0. See also
simGetStackTableInfo
and the
other stack functions
.
C/C++
synopsis
simInt simGetStackUInt8Table(simInt stackHandle,simUChar* array,simInt count)
C/C++
parameters
stackHandle: a stack handle obtained with
simCreateStack
.
array: a pointer to a location receiving the uint8 values. Use
simGetStackTableInfo
to determine the number of values the table contains.
count: the size of the array. If the array is bigger than the table, it will be padded with 0.
C/C++
return value
-1 in case of an error, 0 if item is not an array or does not contain only numbers, 1 otherwise.
Lua
synopsis
Lua
parameters
Lua
return values
Python
synopsis