abfGetComponentName()
Returns the name of the currently open component.
Syntax
const char *abfGetComponentName();
Return Value
A pointer to the name of the currently open component or NULL if none is open.
Example
const char *name = abfGetComponentName();
if (name)
fprintf(stderr, "comp: %s\n", name);
}