MEDsubdomainCorrespondenceSize.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
00020 #include <med.h>
00021 #include <med_config.h>
00022 #include <med_outils.h>
00023 #include <string.h>
00024 #include <stdlib.h>
00025
00046 med_err
00047 MEDsubdomainCorrespondenceSize(const med_idt fid,
00048 const char * const meshname,
00049 const char * const jointname,
00050 const med_int numdt,
00051 const med_int numit,
00052 const med_entity_type localentitype,
00053 const med_geometry_type localgeotype,
00054 const med_entity_type remoteentitype,
00055 const med_geometry_type remotegeotype,
00056 med_int * const nentitycor )
00057 {
00058 char * name = "_MEDsubdomainCorrespondenceSize";
00059 int dummy=0;
00060 med_err fret=-1;
00061 med_int majeur, mineur, release;
00062 MedFuncType func;
00063
00064 MEDfileNumVersionRd(fid, &majeur, &mineur, &release);
00065 func = _MEDversionedApi3(name,majeur,mineur,release);
00066 if ( func != (MedFuncType) NULL )
00067 func (dummy,
00068 fid,
00069 meshname,
00070 jointname,
00071 numdt,
00072 numit,
00073 localentitype,
00074 localgeotype,
00075 remoteentitype,
00076 remotegeotype,
00077 nentitycor,
00078 &fret);
00079 return fret;
00080 }