MED fichier
medfamily.f
Aller à la documentation de ce fichier.
1C* This file is part of MED.
2C*
3C* COPYRIGHT (C) 1999 - 2020 EDF R&D, CEA/DEN
4C* MED is free software: you can redistribute it and/or modify
5C* it under the terms of the GNU Lesser General Public License as published by
6C* the Free Software Foundation, either version 3 of the License, or
7C* (at your option) any later version.
8C*
9C* MED is distributed in the hope that it will be useful,
10C* but WITHOUT ANY WARRANTY; without even the implied warranty of
11C* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12C* GNU Lesser General Public License for more details.
13C*
14C* You should have received a copy of the GNU Lesser General Public License
15C* along with MED. If not, see <http://www.gnu.org/licenses/>.
16C
17
18 subroutine mfacre(fid, name, fname, fnum, ngro, gname, cret)
19c DEC$ ATTRIBUTES DLLEXPORT :: mfacre
20c
21 implicit none
22 save
23c
24 character *(*) name, fname, gname
25 integer*8 fid
26 integer fnum, ngro, cret
27 integer mfafcre
28c
29 cret = mfafcre(fid, name, len(name), fname, len(name),
30 & fnum, ngro, gname, 80 * ngro)
31c
32 return
33 end
34c
35c
36c
37 subroutine mfanfa(fid,maa,n,cret)
38c DEC$ ATTRIBUTES DLLEXPORT :: mfanfa
39c
40 implicit none
41 save
42c
43 integer*8 fid
44 integer n,cret
45 character *(*) maa
46 integer mfafnfa
47c
48 n = mfafnfa(fid,maa,len(maa))
49 if (n.lt.0) then
50 cret = -1
51 else
52 cret = 0
53 endif
54c
55 return
56 end
57c
58c
59c
60 subroutine mfanfg(fid,maa,it,n,cret)
61c DEC$ ATTRIBUTES DLLEXPORT :: mfanfg
62c
63 implicit none
64 save
65c
66 integer*8 fid
67 integer n,cret,it
68 character *(*) maa
69 integer mfafnfg
70c
71 n = mfafnfg(fid,maa,len(maa),it)
72 if (n.lt.0) then
73 cret = -1
74 else
75 cret = 0
76 endif
77c
78 return
79 end
80c
81c
82c
83 subroutine mfafai(fid,maa,ind,fam,num,gro,cret)
84c DEC$ ATTRIBUTES DLLEXPORT :: mfafai
85c
86 implicit none
87 save
88c
89 integer*8 fid
90 integer num,cret,ind
91 character *(*) maa,fam,gro
92 integer mfaffai
93c
94 cret = mfaffai(fid,maa,len(maa),ind,fam,num,gro)
95c
96 return
97 end
98c
99c
100c
101 subroutine mfaona(fid,maa,it,n,cret)
102c DEC$ ATTRIBUTES DLLEXPORT :: mfaona
103c
104 implicit none
105 save
106c
107 integer*8 fid
108 integer it,n,cret
109 character *(*) maa
110 integer mfafona
111c
112 n = mfafona(fid,maa,len(maa),it)
113 if (n.lt.0) then
114 cret = -1
115 else
116 cret = 0
117 endif
118c
119 return
120 end
121c
122c
123c
124 subroutine mfaofi(fid,maa,it,fam,attnum,attval,attdes,
125 & num,gro,cret)
126c DEC$ ATTRIBUTES DLLEXPORT :: mfaofi
127c
128 implicit none
129 save
130c
131 integer*8 fid
132 integer num,cret,it
133 integer attnum(*),attval(*)
134 character *(*) maa,fam,gro,attdes
135 integer mfafofi
136c
137 cret = mfafofi(fid,maa,len(maa),it,fam,attnum,attval,attdes,
138 & num,gro)
139c
140 return
141 end
subroutine mfanfg(fid, maa, it, n, cret)
Definition medfamily.f:61
subroutine mfaofi(fid, maa, it, fam, attnum, attval, attdes, num, gro, cret)
Definition medfamily.f:126
subroutine mfanfa(fid, maa, n, cret)
Definition medfamily.f:38
subroutine mfaona(fid, maa, it, n, cret)
Definition medfamily.f:102
subroutine mfafai(fid, maa, ind, fam, num, gro, cret)
Definition medfamily.f:84
subroutine mfacre(fid, name, fname, fnum, ngro, gname, cret)
Definition medfamily.f:19