diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-12 03:40:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-12 03:40:34 (GMT) |
commit | b8632ce735eeae4d65fa27866155a26d19c7e035 (patch) | |
tree | 0b7638300e8feabd1257cd001822a4477d529256 /src/H5Dpublic.h | |
parent | c0f9f41be8d453550694103a69cf902de79b6b84 (diff) | |
download | hdf5-b8632ce735eeae4d65fa27866155a26d19c7e035.zip hdf5-b8632ce735eeae4d65fa27866155a26d19c7e035.tar.gz hdf5-b8632ce735eeae4d65fa27866155a26d19c7e035.tar.bz2 |
[svn-r7029] Purpose:
New feature/Bug fix
Description:
Add new fill time value - H5D_FILL_TIME_IFSET which writes the fill value
to a dataset if the user has defined one, otherwise not writing the fill value
to the dataset.
Platforms tested:
FreeBSD 4.8 (sleipnir) serial & parallel
h5committest
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r-- | src/H5Dpublic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h index c0a23cb..5987b79 100644 --- a/src/H5Dpublic.h +++ b/src/H5Dpublic.h @@ -53,7 +53,8 @@ typedef enum H5D_space_status_t { typedef enum H5D_fill_time_t { H5D_FILL_TIME_ERROR =-1, H5D_FILL_TIME_ALLOC =0, - H5D_FILL_TIME_NEVER =1 + H5D_FILL_TIME_NEVER =1, + H5D_FILL_TIME_IFSET =2 } H5D_fill_time_t; /* Values for fill value status */ |