Browse
 
Tools
Rss Categories

LVSemanticArray

1 LVSemanticArray C API Summary

A LVSemanticArray represents an array type. Function Return Type Description LVSemanticArray_GetElement(H_SI_DATA h_si_data, int index) H_SI_DATA If the h_si_data is of type SI_TYPE_ARRAY, returns a handle to the data specified by index. LVSemanticArray_GetSize(H_SI_DATA…

2 LVSemanticArray_GetElement

If the handle is of SI_TYPE_ARRAY type, this function returns a handle to the semantic data specified by the index. If the handle is not of SI_TYPE_ARRAY type, this function always returns NULL. This function does not allocate memory for the new handle, so…

3 LVSemanticArray_GetSize

If a handle is of SI_TYPE_ARRAY type, this function returns the number of elements in the array. Otherwise this function returns LV_FAILURE. Function int LVSemanticArray_GetSize(H_SI_DATA h_si_data) Parameters h_si_data Semantic data handle. Return Values…