diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2010-09-22 20:58:02 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2010-09-22 20:58:02 (GMT) |
commit | 43a4a5dcff7489611bd484b7e776190680ec830d (patch) | |
tree | a56ff1f69e0b5ff6af9167dc9dec7f282adef39f /src/H5Epkg.h | |
parent | 2087c6a9e49daa4d160fdbd79230bb3b36e63c30 (diff) | |
download | hdf5-43a4a5dcff7489611bd484b7e776190680ec830d.zip hdf5-43a4a5dcff7489611bd484b7e776190680ec830d.tar.gz hdf5-43a4a5dcff7489611bd484b7e776190680ec830d.tar.bz2 |
[svn-r19469] Bug fix for 1707 - My previous checkin wasn't complete. I left out the case when the
deprecated symbols were disabled. I made a different definition for H5E_auto_op_t when the
deprecated symbols were disabled.
Tested on jam - a simple change.
Diffstat (limited to 'src/H5Epkg.h')
-rw-r--r-- | src/H5Epkg.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/H5Epkg.h b/src/H5Epkg.h index fc82502..b9688d2 100644 --- a/src/H5Epkg.h +++ b/src/H5Epkg.h @@ -68,12 +68,20 @@ /****************************/ /* Some syntactic sugar to make the compiler happy with two different kinds of callbacks */ +#ifndef H5_NO_DEPRECATED_SYMBOLS typedef struct { unsigned vers; /* Which version callback to use */ - hbool_t user_set; + hbool_t user_set; /* If the printing function has been set. */ H5E_auto1_t func1; /* Old-style callback, NO error stack param. */ H5E_auto2_t func2; /* New-style callback, with error stack param. */ } H5E_auto_op_t; +#else +typedef struct { + unsigned vers; /* Which version callback to use */ + hbool_t user_set; /* If the printing function has been set. */ + H5E_auto_t func2; /* Only the new style callback function is available. */ +} H5E_auto_op_t; +#endif /* Some syntactic sugar to make the compiler happy with two different kinds of callbacks */ typedef struct { |