blob: 2ba48468a1bd23ed9396d31f5e918b69ea72e99f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/**
* \ingroup H5O
* \def H5Ovisit_by_name
*
* #H5Ovisit_by_name is a macro that is mapped to one of the following:
* \li #H5Ovisit_by_name3
* \li #H5Ovisit_by_name1
*
* \details Such macros are provided to facilitate application
* compatibility. Their use and mappings are fully described in
* API Compatibility Macros in HDF5; we urge you to read that
* document closely.
*
* In HDF5 versions 1.12 and after, #H5Ovisit_by_name is mapped to
* #H5Ovisit_by_name3. In version 1.10, #H5Ovisit_by_name
* is identical to #H5Ovisit_by_name1.
*
* Specific compile-time compatibility flags and the resulting
* mappings are as follows:
*
* \par
* <table>
* <tr>
* <th>Compatibility settings</th>
* <th>H5Ovisit_by_name</th>
* </tr>
* <tr>
* <td>No compatibility flag \n </td>
* <td>#H5Ovisit_by_name3 for 1.12 and above \n
* #H5Ovisit_by_name1 for 1.10 or 1.8</td>
* </tr>
* <tr>
* <td>Emulate Release 1.12 interface</td>
* <td>#H5Ovisit_by_name3</td>
* </tr>
* <tr>
* <td>Emulate Release 1.10 or 1.8 interface</td>
* <td>#H5Ovisit_by_name1</td>
* </tr>
* </table>
*
* \version 1.12.0 The macro #H5Ovisit_by_name and function #H5Ovisit_by_name3 were added.
* \version 1.10.5 The macro #H5Ovisit_by_name was removed. The functions
* #H5Ovisit_by_name and #H5Ovisit_by_name1 are identical
* in this release. This change was added to restore the
* broken API compatibility introduced in HDF5-1.10.3.
* \version 1.10.3 The function #H5Ovisit_by_name was renamed to #H5Ovisit_by_name1.
* The macro #H5Ovisit_by_name and the function #H5Ovisit_by_name2
* were introduced in this release.
* \version 1.8.8 Fortran subroutine introduced in this release.
*
* \since 1.8.0
*
*/
|