diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-03-31 19:24:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-03-31 19:24:31 (GMT) |
commit | 448e1b78ee37cc01f5f08e2e9c9528c7687c5318 (patch) | |
tree | 05f32e991c350565cff8c430c1ad4e243c3dad67 /src/H5EApkg.h | |
parent | 0d1d64ad87c42dd3c283c0598295260826e3d819 (diff) | |
download | hdf5-448e1b78ee37cc01f5f08e2e9c9528c7687c5318.zip hdf5-448e1b78ee37cc01f5f08e2e9c9528c7687c5318.tar.gz hdf5-448e1b78ee37cc01f5f08e2e9c9528c7687c5318.tar.bz2 |
[svn-r16636] Description:
Pass some user data down into the extensible array client context creation
callback.
Tested on:
FreeBSD/32 6.3 (duty)
Too minor to require h5committest
Diffstat (limited to 'src/H5EApkg.h')
-rw-r--r-- | src/H5EApkg.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5EApkg.h b/src/H5EApkg.h index 3f32b19..b2f837a 100644 --- a/src/H5EApkg.h +++ b/src/H5EApkg.h @@ -652,9 +652,11 @@ H5_DLL herr_t H5EA__destroy_flush_depend(H5EA_hdr_t *hdr, H5AC_info_t *parent_en H5AC_info_t *child_entry); /* Header routines */ -H5_DLL H5EA_hdr_t *H5EA__hdr_alloc(H5F_t *f, const H5EA_class_t *cls); +H5_DLL H5EA_hdr_t *H5EA__hdr_alloc(H5F_t *f, const H5EA_class_t *cls, + void *ctx_udata); H5_DLL herr_t H5EA__hdr_init(H5EA_hdr_t *hdr); -H5_DLL haddr_t H5EA__hdr_create(H5F_t *f, hid_t dxpl_id, const H5EA_create_t *cparam); +H5_DLL haddr_t H5EA__hdr_create(H5F_t *f, hid_t dxpl_id, const H5EA_create_t *cparam, + void *ctx_udata); H5_DLL void *H5EA__hdr_alloc_elmts(H5EA_hdr_t *hdr, size_t nelmts); H5_DLL herr_t H5EA__hdr_free_elmts(H5EA_hdr_t *hdr, size_t nelmts, void *elmts); H5_DLL herr_t H5EA__hdr_incr(H5EA_hdr_t *hdr); |