dtw_getvar()

Usage

Retrieves the value of a configuration variable specified by var_name from the Net.Data initialization file. Net.Data owns the memory returned by dtw_getvar(); do not modify or free it.

Format

char *dtw_getvar(char *var_name)

Parameters
var_name The name of the configuration variable to retrieve.

Examples

char *myBindFile;
 
myBindFile = dtw_getvar("BIND_FILE");


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