abfGetRequestName()

Returns the name of the currently open request.

Syntax

const char *abfGetRequestName();

Return Value

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

Example

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