file_id
|
IN:
|
File identifier returned by Hopen
|
ref_array
|
OUT:
|
Buffer for the reference numbers of the lone vgroups
|
maxsize
|
IN:
|
Maximum number of vgroups to store in ref_array
|
int32 file_id; /* id of opened HDF file */ int32 maxsize, status; int32 *ref_array; maxsize = Vlone(file_id, NULL, 0); ref_array = (int32*) malloc(sizeof(int32)*maxsize); status = Vlone(file_id, ref_array, maxsize);
FORTRAN
|
integer function vflone(file_id, ref_array, maxsize)
|
|
integer file_id, ref_array(*), maxsize
|