gra_return_info_address

Format:
int gra_return_info_address( char $*$name, info__xxx $**$info);
Description:
Returns the address of the info block of the specified GQE. The variable type info__xxx has to be replaced by one of the info block types which are listed in chapter [*].

Example:

char name[] = "scan_name"; 
info__scan  *info; 
...
gra_return_info_address( name, &info); 
...
info->curr_index = 20; 
...