diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-04-07 19:56:06 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-04-07 19:56:06 (GMT) |
commit | 151757f9891ca89224dabc656680332261b074ea (patch) | |
tree | 7c3a4c4ad98c2c2f3ed314aba3786334a01529ba /fortran/test | |
parent | 527982782315d5940a207ff9321a8a9d04c14a1a (diff) | |
download | hdf5-151757f9891ca89224dabc656680332261b074ea.zip hdf5-151757f9891ca89224dabc656680332261b074ea.tar.gz hdf5-151757f9891ca89224dabc656680332261b074ea.tar.bz2 |
[svn-r10571] Purpose:
Improvement
Description:
Changed headers in Fortran directories to use H5_FC_FUNC macro
from H5pubconf.h rather than FC_FUNC macro from H5config.h.
This is better practice and works better with the Windows projects.
Platforms tested:
heping, Windows
Diffstat (limited to 'fortran/test')
-rw-r--r-- | fortran/test/t.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fortran/test/t.h b/fortran/test/t.h index 3e4fd4d..34cec34 100644 --- a/fortran/test/t.h +++ b/fortran/test/t.h @@ -21,9 +21,9 @@ char *h5_fixname(const char *base_name, hid_t fapl, char *fullname, size_t size) /* * Functions from t.c */ -# define nh5_fixname_c FC_FUNC_(h5_fixname_c, H5_FIXNAME_C) -# define nh5_cleanup_c FC_FUNC_(h5_cleanup_c, H5_CLEANUP_C) -# define nh5_exit_c FC_FUNC_(h5_exit_c, H5_EXIT_C) +# define nh5_fixname_c H5_FC_FUNC_(h5_fixname_c, H5_FIXNAME_C) +# define nh5_cleanup_c H5_FC_FUNC_(h5_cleanup_c, H5_CLEANUP_C) +# define nh5_exit_c H5_FC_FUNC_(h5_exit_c, H5_EXIT_C) H5_FCTESTDLL int_f nh5_fixname_c (_fcd base_name, size_t_f *base_namelen, hid_t_f *fapl, _fcd full_name, size_t_f *full_namelen); |