MED fichier
medparfile.f
Aller à la documentation de ce fichier.
1 C* This file is part of MED.
2 C*
3 C* COPYRIGHT (C) 1999 - 2023 EDF R&D, CEA/DEN
4 C* MED is free software: you can redistribute it and/or modify
5 C* it under the terms of the GNU Lesser General Public License as published by
6 C* the Free Software Foundation, either version 3 of the License, or
7 C* (at your option) any later version.
8 C*
9 C* MED is distributed in the hope that it will be useful,
10 C* but WITHOUT ANY WARRANTY; without even the implied warranty of
11 C* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 C* GNU Lesser General Public License for more details.
13 C*
14 C* You should have received a copy of the GNU Lesser General Public License
15 C* along with MED. If not, see <http://www.gnu.org/licenses/>.
16 C*
17 
18  subroutine mpfope(fid, name, access, com, info, cret)
19 c DEC$ ATTRIBUTES DLLEXPORT :: mpfope
20 c
21  implicit none
22  save
23  character *(*) name
24  integer*8 fid
25  integer access
26  integer com,info,cret
27  integer*8 mpffope
28 c
29  fid = mpffope(name, access, len(name), com, info)
30  if (fid.lt.0) then
31  cret=-1
32  else
33  cret=0
34  endif
35 c
36  return
37  end
38 
mpfope
subroutine mpfope(fid, name, access, com, info, cret)
Ouverture d'un fichier MED pour une utilisation parallèle.
Definition: medparfile.f:19