MED fichier
Documentation MED
Guides d'utilisation
Guides de référence
Dev_V3
src
hdfi
MEDdatasetFermer.c
Aller à la documentation de ce fichier.
1
/* This file is part of MED.
2
*
3
* COPYRIGHT (C) 1999 - 2016 EDF R&D, CEA/DEN
4
* MED is free software: you can redistribute it and/or modify
5
* it under the terms of the GNU Lesser General Public License as published by
6
* the Free Software Foundation, either version 3 of the License, or
7
* (at your option) any later version.
8
*
9
* MED is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU Lesser General Public License for more details.
13
*
14
* You should have received a copy of the GNU Lesser General Public License
15
* along with MED. If not, see <http://www.gnu.org/licenses/>.
16
*/
17
18
19
#include <
med.h
>
20
#include <
med_config.h
>
21
#include <
med_outils.h
>
22
#include <hdf5.h>
23
24
/*
25
* - Nom de la fonction : _MEDdatasetFermer
26
* - Description : fermeture d'un objet HDF dataset
27
* - Parametres :
28
* - id (IN) : l'ID de l'objet HDF dataset
29
* - Resultat : 0 en cas de succes, -1 sinon
30
*/
31
32
med_err
33
_MEDdatasetFermer
(
med_idt
id
)
34
{
35
med_err
ret=-1;
36
37
if
((ret = H5Dclose(
id
)) < 0)
38
return
-1;
39
40
return
0;
41
}
med_err
herr_t med_err
Definition:
med.h:310
med_config.h
med_outils.h
med.h
_MEDdatasetFermer
med_err _MEDdatasetFermer(med_idt id)
Definition:
MEDdatasetFermer.c:33
med_idt
hid_t med_idt
Definition:
med.h:309
Généré le Lundi 7 Novembre 2016 14:19:23 pour MED fichier par
1.8.9.1