INT32ToByteArray [LJM User's Guide]
Converts an array of 32-bit integer values to bytes, performing automatic endian conversions if necessary.
This function is not needed except for applications performing raw byte manipulation, as with the Raw Byte functions.
Syntax
LJM_ERROR_RETURN LJM_INT32ToByteArray(
const int * aINT32,
int RegisterOffset,
int NumINT32,
unsigned char * aBytes)
Parameters
aINT32 [in]
The array of values to be converted to bytes.
RegisterOffset [in]
The register offset to put the converted values in aBytes
.
NumINT32 [in]
The number of values to convert.
aBytes [out]
The converted values in byte form.
Returns
LJM errorcode or 0
for no error.
Remarks
See also: LJM_ByteArrayToINT32