Row structure
Contains information of one row in a list. Syntax
typedef struct Row{
int size;
int reserved;
struct Row *nextRow;
void *items[];
} Row;Members
size The size of the structure, in bytes.
reserved This value is here for C compatibility (padding) and is ignored.
nextRow A pointer to a Row structure. This is the next row in the list and can be zero if there are no more rows in the list.
items A list of items that each belong in a sequential column. The type of every item is defined in the member type of structure UserValueOption, the member that holds this structure is defined in structure MultiColumnList, named columns.
Requirements
| Minimum supported API | 1.00
|
| Header | tvsserver_base.h
|