abfGetDatatypeName()

Returns the name of the currently open datatype.

Syntax

const char *abfGetDatatypeName();

Return Value

A pointer to the name of the currently open component or NULL if none is open.

Example

const char *name = abfGetDatatypeName();
if (name)
	fprintf(stderr, "type:  %s\n", name);
}