summaryrefslogtreecommitdiffstats
path: root/src/H5Dprivate.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-03-22 14:40:08 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-03-22 14:40:08 (GMT)
commitd17a7fa26e972714082c5061f29f6b9335e189f4 (patch)
treeddc656ce236b5bff340f7d686e975ce7f24da55a /src/H5Dprivate.h
parent10dd81d6bf70d17a573f8202fbf375e6badd18b3 (diff)
downloadhdf5-d17a7fa26e972714082c5061f29f6b9335e189f4.zip
hdf5-d17a7fa26e972714082c5061f29f6b9335e189f4.tar.gz
hdf5-d17a7fa26e972714082c5061f29f6b9335e189f4.tar.bz2
[svn-r22119] Changes:
- add VOL implementation for H5O, H5D, and H5T functions - update the VOL interface with H5VLget routines - make upper level IDs of Type H5I_XXX_PUBLIC - bug fixes Comments: - some routines still don't go through VOL but have a workaround so they don't have to at the moment.
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r--src/H5Dprivate.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h
index 48966db..01071e6 100644
--- a/src/H5Dprivate.h
+++ b/src/H5Dprivate.h
@@ -156,6 +156,13 @@ typedef struct H5D_copy_file_ud_t {
/******************************/
/* Library Private Prototypes */
/******************************/
+/* Internal I/O routines */
+H5_DLL herr_t H5D_read(H5D_t *dataset, hid_t mem_type_id, const H5S_t *mem_space,
+ const H5S_t *file_space, hid_t dset_xfer_plist,
+ void *buf/*out*/);
+H5_DLL herr_t H5D_write(H5D_t *dataset, hid_t mem_type_id, const H5S_t *mem_space,
+ const H5S_t *file_space, hid_t dset_xfer_plist,
+ const void *buf);
H5_DLL herr_t H5D_init(void);
H5_DLL H5D_t *H5D_open(const H5G_loc_t *loc, hid_t dapl_id, hid_t dxpl_id);