diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-01-02 19:20:19 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-01-02 19:20:19 (GMT) |
commit | 216a6e99047f32a8cdf857f6cf3b195d605549a1 (patch) | |
tree | 8f48cea87963afad81a38fd70edb45238848299e /src/H5Fprivate.h | |
parent | 63e522aa138db60749a97f0d6896934b8a6d338c (diff) | |
download | hdf5-216a6e99047f32a8cdf857f6cf3b195d605549a1.zip hdf5-216a6e99047f32a8cdf857f6cf3b195d605549a1.tar.gz hdf5-216a6e99047f32a8cdf857f6cf3b195d605549a1.tar.bz2 |
[svn-r11850] Purpose:
Feature
Description:
Added character encoding and attribute creation property lists.
Solution:
Attributes' character encoding is set via the ACPL.
The default is ASCII, with UTF-8 being the other option currently.
Platforms tested:
heping, mir, sleipnir, copper
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 2359cb9..8b45ef4 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -323,6 +323,10 @@ typedef struct H5F_t H5F_t; #define H5F_CRT_SHARE_HEAD_VERS_SIZE sizeof(unsigned) #define H5F_CRT_SHARE_HEAD_VERS_DEF HDF5_SHAREDHEADER_VERSION +/* File-wide default character encoding can not yet be set via the file + * creation property list and is always ASCII. */ +#define H5F_CRT_DEFAULT_CSET H5T_CSET_ASCII + /* ========= File Access properties ============ */ /* Definitions for the initial metadata cache resize configuration */ #define H5F_ACS_META_CACHE_INIT_CONFIG_NAME "mdc_initCacheCfg" |