Usage
Adds one or more rows to the end of the table. Assign the table values of the new rows with the dtw_table_SetV() utility after rows are appended to the table.
Format
int dtw_table_AppendRow(void *table, int rows)
Parameters
table | A pointer to the table to be appended to. |
rows | The number of rows to append. |
Examples
void *myTable; rc = dtw_table_AppendRow(myTable, 10);