mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r11368] Purpose:
Maintenance on Windows Description: Add definition for int <-> float conversion exception Solution: Platforms tested: MSVS 6.0 on Windows XP Misc. update:
This commit is contained in:
parent
c037d88f3f
commit
ae138025bb
@ -1,5 +1,22 @@
|
||||
/* H5pubconf.h is adapted from UNIX platform and manually maintained on the windows platform. */
|
||||
|
||||
#define H5_SIZEOF___INT64 8
|
||||
#define H5_SIZEOF_CHAR 1
|
||||
#define H5_SIZEOF_DOUBLE 8
|
||||
#define H5_SIZEOF_FLOAT 4
|
||||
#define H5_SIZEOF_INT 4
|
||||
#define H5_SIZEOF_LONG 4
|
||||
#define H5_SIZEOF_LONG_DOUBLE 8
|
||||
#define H5_SIZEOF_OFF_T 4
|
||||
#define H5_SIZEOF_SHORT 2
|
||||
#define H5_SIZEOF_SIZE_T 4
|
||||
|
||||
/*#if defined __INTEL_COMPILER
|
||||
#define H5_SIZEOF_LONG_DOUBLE 12
|
||||
#else*/
|
||||
|
||||
/*#endif*/
|
||||
|
||||
/*#define H5_HAVE_TM_ZONE 1 windows do not use this constant.*/
|
||||
#define H5_MALLOC_WORKS 1
|
||||
|
||||
@ -28,25 +45,8 @@ in the file file_io.win32.c and including it on the projects
|
||||
#else
|
||||
#define H5_PRINTF_LL_WIDTH "I64"
|
||||
#endif
|
||||
|
||||
#define H5_HAVE___int64
|
||||
#define H5_SIZEOF___INT64 8
|
||||
#define H5_SIZEOF_CHAR 1
|
||||
#define H5_SIZEOF_DOUBLE 8
|
||||
#define H5_SIZEOF_FLOAT 4
|
||||
#define H5_SIZEOF_INT 4
|
||||
|
||||
|
||||
#define H5_SIZEOF_LONG 4
|
||||
|
||||
/*#if defined __INTEL_COMPILER
|
||||
#define H5_SIZEOF_LONG_DOUBLE 12
|
||||
#else*/
|
||||
|
||||
#define H5_SIZEOF_LONG_DOUBLE 8
|
||||
/*#endif*/
|
||||
#define H5_SIZEOF_OFF_T 4
|
||||
#define H5_SIZEOF_SHORT 2
|
||||
#define H5_SIZEOF_SIZE_T 4
|
||||
|
||||
|
||||
#define H5_HAVE_DIFFTIME 1
|
||||
@ -131,3 +131,10 @@ in the file file_io.win32.c and including it on the projects
|
||||
#endif
|
||||
#endif
|
||||
*/
|
||||
|
||||
|
||||
/* Data accuracy is prefered to speed during data conversions */
|
||||
#define H5_WANT_DATA_ACCURACY 1
|
||||
|
||||
/* Check exception handling functions during data conversions */
|
||||
#define H5_WANT_DCONV_EXCEPTION 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user