|
vdata_id
|
IN:
|
Vdata access identifier returned from VSattach
|
|
fields
|
IN:
|
Name(s) of the fields to check
|
int32 varsize, n_records;
unsigned char *readbuffer;
int32 vdata_id;
VSQuerycount(vdata_id, &n_records);
varsize = VSsizeof(vdata_id,"DENSITY");
readbuffer = (unsigned char*) malloc(varsize * n_records);
|
FORTRAN
|
integer function vsfsiz(vdata_id, fields)
|
|
|
integer vdata_id
|
|
|
character* (*) fields
|