abfOpenRequest()
Opens an existing request in the currently open datatype.
Syntax
intabfOpenRequest(const char *name);
Inputs
- name
 - The name of the request to be opened.
 
Return Value
- 0
 - On success
 - 1
 - On failure (indicates request does not exist)
 
Example
int ret;
ret = abfOpenRequest("Upper Torso");
if (ret)
	abfNewDatatype("Upper Torso"):
	abfOpenDatatype("Upper Torso");
}
    Comments
This function must be called after a datatype has been opened.
Only one request can be open at a time.