MEDmeshStructElementVarAttWr.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
00039
00040
00041 med_err
00042 MEDmeshStructElementVarAttWr(const med_idt fid,
00043 const char* const meshname,
00044 const med_int numdt,
00045 const med_int numit,
00046 const med_geometry_type mgeotype,
00047 const char* const varattname,
00048 const med_int nentity,
00049 const void* const value
00050 )
00051 {
00052
00053 med_err _ret = -1;
00054 med_entity_type _entitytype = MED_STRUCT_ELEMENT;
00055
00056
00057 _ret= _MEDmeshAdvancedWr(fid,
00058 meshname,
00059 MED_VARIABLE_ATTRIBUTE,
00060 varattname,
00061 MED_INTERNAL_UNDEF,
00062 numdt,
00063 numit,
00064 MED_UNDEF_DT,
00065 _entitytype,
00066 mgeotype,
00067 MED_NODAL,
00068 MED_UNDEF_PFLMODE,
00069 MED_SAME_PROFILE_INTERNAL,
00070 MED_FULL_INTERLACE,
00071 MED_ALL_CONSTITUENT,
00072 NULL,
00073 nentity,
00074 value);
00075 ERROR:
00076
00077 return _ret;
00078
00079 }