MEDmeshEntityAttributeAdvancedRd.c
Aller à la documentation de ce fichier.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include <med.h>
00020 #include <med_config.h>
00021 #include <med_outils.h>
00022 #include <string.h>
00023 #include <stdlib.h>
00024
00042 med_err MEDmeshEntityAttributeAdvancedRd(const med_idt fid,
00043 const char* const meshname,
00044 const med_data_type datatype,
00045 const med_int numdt,
00046 const med_int numit,
00047 const med_entity_type entitype,
00048 const med_geometry_type geotype,
00049 const med_filter * const filter,
00050 void * const attval)
00051 {
00052
00053 med_err _ret=-1;
00054
00055 switch (datatype) {
00056 case MED_NAME:
00057 case MED_NUMBER:
00058 case MED_FAMILY_NUMBER:
00059 break;
00060 default:
00061 MED_ERR_(_ret,MED_ERR_RANGE,MED_ERR_PARAMETER,"");
00062 ISCRUTE_int(datatype);
00063 goto ERROR;
00064 }
00065
00066 _ret= _MEDmeshAdvancedRd(fid,
00067 meshname,
00068 datatype,
00069 MED_NO_NAME,
00070 MED_INTERNAL_UNDEF,
00071 numdt,
00072 numit,
00073 entitype,
00074 geotype,
00075 MED_NODAL,
00076 MED_UNDEF_PFLMODE,
00077 MED_NO_PROFILE,
00078 MED_UNDEF_INTERLACE,
00079 MED_ALL_CONSTITUENT,
00080 filter,
00081 (unsigned char * const) attval);
00082 ERROR:
00083 return _ret;
00084
00085 }