00001 00005 #include <nccf_data.h> 00006 00007 int nccf_get_struct_data_type(int dataid, nc_type *dataType){ 00008 00009 struct nccf_struct_data_type *self; 00010 self = nccf_li_find(&CFLIST_STRUCTURED_DATA, dataid); 00011 00012 nccf_varGetDataType(&self->dataVar, dataType); 00013 00014 return NC_NOERR; 00015 }