dtw_table_GetN()

Usage

Retrieves a column heading. Net.Data owns the memory pointed to by dest; do not modify or free it.

Format

int dtw_table_GetN(void *table, char **dest, int col)

Parameters
table A pointer to the table from which a column heading is retrieved.
dest A pointer to the character string to contain the column heading.
col The column number of the column heading.

Examples

void *myTable;
char *myColumnHeading;
 
rc = dtw_table_GetN(myTable, &myColumnHeading, 5);


[ Top of Page | Previous Page | Next Page | Index ]