diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-15 19:36:48 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-15 19:36:48 (GMT) |
commit | fe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e (patch) | |
tree | dedfc092621626a511888fab242ce08655f17f3e /src/H5Ppublic.h | |
parent | 05eb7b7a848f94061f15736963fce1e9ee1ee6fd (diff) | |
download | hdf5-fe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e.zip hdf5-fe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e.tar.gz hdf5-fe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e.tar.bz2 |
[svn-r4543]
Purpose:
Changed the file creation property list to the new generic property list.
Platform tested:
IRIX64, SunOS5.7, FreeBSD
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index e21368e..d8e8383 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -39,9 +39,8 @@ typedef long off_t; /* Property list classes */ typedef enum H5P_class_t_old { H5P_NO_CLASS_OLD = -1, /*error return value */ - H5P_FILE_CREATE_OLD = 0, /*file creation properties */ - H5P_FILE_ACCESS_OLD = 1, /*file access properties */ - H5P_MOUNT_OLD = 2, /*file mounting properties */ + H5P_FILE_ACCESS_OLD = 0, /*file access properties */ + H5P_MOUNT_OLD = 1, /*file mounting properties */ H5P_NCLASSES_OLD /*this must be last! */ } H5P_class_t_old; @@ -56,7 +55,6 @@ typedef hid_t H5P_class_t; /* Alias H5P_class_t to hid_t */ /* - merge/delete H5Pcopy and H5Pcopy_new */ /* - merge/delete H5Pclose and H5Pclose_list */ __DLLVAR__ hid_t H5P_NO_CLASS; -__DLLVAR__ hid_t H5P_FILE_CREATE; __DLLVAR__ hid_t H5P_FILE_ACCESS; __DLLVAR__ hid_t H5P_MOUNT; @@ -94,7 +92,7 @@ extern "C" { */ #define H5P_NO_CLASS_NEW (H5open(), H5P_CLS_NO_CLASS_g) #define H5P_NO_CLASS_HASH_SIZE 1 /* 1, not 0, otherwise allocations get weird */ -#define H5P_FILE_CREATE_NEW (H5open(), H5P_CLS_FILE_CREATE_g) +#define H5P_FILE_CREATE (H5open(), H5P_CLS_FILE_CREATE_g) #define H5P_FILE_CREATE_HASH_SIZE 17 #define H5P_FILE_ACCESS_NEW (H5open(), H5P_CLS_FILE_ACCESS_g) #define H5P_FILE_ACCESS_HASH_SIZE 17 |