diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-05-05 19:29:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-05-05 19:29:09 (GMT) |
commit | 7f99a80b0abee64d09ada9be749196cf8185eaf2 (patch) | |
tree | aa50771017835e0be9617240cdcb63c09504ae49 /src/H5Ppublic.h | |
parent | 14aaec71d7fe418fa6abb1b5c0ff92e092a77835 (diff) | |
download | hdf5-7f99a80b0abee64d09ada9be749196cf8185eaf2.zip hdf5-7f99a80b0abee64d09ada9be749196cf8185eaf2.tar.gz hdf5-7f99a80b0abee64d09ada9be749196cf8185eaf2.tar.bz2 |
[svn-r8482] Purpose:
Code cleanup
Description:
Refactored data transform code to reduce amount of symbols in the global
scope and also cleaned up & simplified the code a bit.
Platforms tested:
h5committest (minus copper, plus serial modi4)
FreeBSD 4.9 (sleipnir) w & w/o parallel
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index 8368c84..4d1e027 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -27,9 +27,9 @@ #include "H5Ipublic.h" #include "H5Dpublic.h" #include "H5Fpublic.h" -#include "H5Tpublic.h" #include "H5FDpublic.h" #include "H5MMpublic.h" +#include "H5Tpublic.h" #include "H5Zpublic.h" /* Metroworks <sys/types.h> doesn't define off_t. */ @@ -197,7 +197,7 @@ H5_DLL herr_t H5Pset_layout(hid_t plist_id, H5D_layout_t layout); H5_DLL H5D_layout_t H5Pget_layout(hid_t plist_id); H5_DLL herr_t H5Pset_chunk(hid_t plist_id, int ndims, const hsize_t dim[]); H5_DLL int H5Pget_chunk(hid_t plist_id, int max_ndims, hsize_t dim[]/*out*/); -H5_DLL herr_t H5Pset_data_transform(hid_t plist_id, char* expression); +H5_DLL herr_t H5Pset_data_transform(hid_t plist_id, const char* expression); H5_DLL herr_t H5Pset_external(hid_t plist_id, const char *name, off_t offset, hsize_t size); H5_DLL int H5Pget_external_count(hid_t plist_id); @@ -218,7 +218,6 @@ H5_DLL herr_t H5Pset_family_offset(hid_t fapl_id, hsize_t offset); H5_DLL herr_t H5Pget_family_offset(hid_t fapl_id, hsize_t *offset); H5_DLL herr_t H5Pset_multi_type(hid_t fapl_id, H5FD_mem_t type); H5_DLL herr_t H5Pget_multi_type(hid_t fapl_id, H5FD_mem_t *type); - H5_DLL herr_t H5Pset_buffer(hid_t plist_id, size_t size, void *tconv, void *bkg); H5_DLL size_t H5Pget_buffer(hid_t plist_id, void **tconv/*out*/, |