diff options
Diffstat (limited to 'src/H5vers.txt')
-rw-r--r-- | src/H5vers.txt | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/src/H5vers.txt b/src/H5vers.txt index 0fd4c4c..e01ea81 100644 --- a/src/H5vers.txt +++ b/src/H5vers.txt @@ -22,7 +22,9 @@ # Blank lines and lines beginning with '#' are ignored # # The format of this file is as follows: -# <type>, <base routine name>, <version introduced>, <list of revised versions> +# <type>: <base routine name>; <list of parameter types for function>; <version introduced>, <list of revised versions> +# +# Where <type> is either 'FUNCTION' or 'TYPEDEF' # # For example, the following sample input shows two functions with different # API versions for each. The example below shows H5Gfoo being added to the @@ -34,8 +36,8 @@ # revised in the v1.6 branch (so there should be two versioned names for the # routine: H5Gbar1 and H5Gbar2). # -# FUNCTION, H5Gfoo, v10, v14, v18 -# FUNCTION, H5Gbar, v12, v16 +# FUNCTION: H5Gfoo; ; v10, v14, v18 +# FUNCTION: H5Gbar; ; v12, v16 # # Programmer: Quincey Koziol # Creation Date: 2007/07/10 @@ -43,6 +45,15 @@ # API function names # (although not required, it's easier to compare this file with the headers # generated if the list below is in alphanumeric sort order - QAK) -#FUNCTION, H5Gcreate, v10, v14, v18 -#FUNCTION, H5Gopen, v12, v18 +FUNCTION: H5Eclear; ; v10, v18 +FUNCTION: H5Eget_auto; ; v10, v18 +FUNCTION: H5Eprint; ; v10, v18 +FUNCTION: H5Epush; ; v14, v18 +FUNCTION: H5Eset_auto; ; v10, v18 +FUNCTION: H5Ewalk; H5E_walk, H5E_error; v10, v18 + +# API typedefs +# (although not required, it's easier to compare this file with the headers +# generated if the list below is in alphanumeric sort order - QAK) +TYPEDEF: H5E_auto; v10, v18 |