Usage
Inserts one or more columns after the specified column.
Format
int dtw_table_InsertCol(void *table, int after_col, int cols)
Parameters
table | A pointer to the table to modify. |
after_col | The number of the column after which the new columns are to be inserted. To insert columns at the beginning of the table, specify 0. |
cols | The number of columns to insert. |
Examples
void *myTable; rc = dtw_table_InsertCol(myTable, 3, 10);