Usage
Retrieves a value from a table. Net.Data owns the memory pointed to by dest; do not modify or free it.
Format
int dtw_table_GetV(void *table, char **dest, int row, int col)
Parameters
table | A pointer to the table from which a value is retrieved. |
dest | A pointer to the character string that is to contain the value. |
row | The row number of the value to retrieve. |
col | The column number of the value to retrieve. |
Examples
void *myTable; char *myTableValue; rc = dtw_table_GetV(myTable, &myTableValue, 3, 5);