diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-30 20:12:32 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-30 20:12:32 (GMT) |
commit | 047269139fb87ec8f79ba6110d46eb7e02bea985 (patch) | |
tree | 178b13f967702ab0dcbff9056344bba8bf603118 /src | |
parent | beb7428f68efbdb27c5ae06705c7eff04d8d4cc7 (diff) | |
download | hdf5-047269139fb87ec8f79ba6110d46eb7e02bea985.zip hdf5-047269139fb87ec8f79ba6110d46eb7e02bea985.tar.gz hdf5-047269139fb87ec8f79ba6110d46eb7e02bea985.tar.bz2 |
Add a couple of missing prototypes for static routines, along with updating
a comment from VOL plugin -> connector.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5VLpassthru.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5VLpassthru.c b/src/H5VLpassthru.c index 4c7e64a..a5da06e 100644 --- a/src/H5VLpassthru.c +++ b/src/H5VLpassthru.c @@ -63,6 +63,12 @@ typedef struct H5VL_pass_through_wrap_ctx_t { /* Function prototypes */ /********************* */ +/* Helper routines */ +static herr_t H5VL_pass_through_file_specific_reissue(void *obj, hid_t connector_id, + H5VL_file_specific_t specific_type, hid_t dxpl_id, void **req, ...); +static herr_t H5VL_pass_through_request_specific_reissue(void *obj, hid_t connector_id, + H5VL_request_specific_t specific_type, ...); + /* "Management" callbacks */ static herr_t H5VL_pass_through_init(hid_t vipl_id); static herr_t H5VL_pass_through_term(void); |