HDF5  1.12.0
H5VLpassthru.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2  * Copyright by The HDF Group. *
3  * All rights reserved. *
4  * *
5  * This file is part of HDF5. The full HDF5 copyright notice, including *
6  * terms governing use, modification, and redistribution, is contained in *
7  * the COPYING file, which can be found at the root of the source code *
8  * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
9  * If you do not have access to either file, you may request a copy from *
10  * help@hdfgroup.org. *
11  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
12 
13 /*
14  * Purpose: The public header file for the pass-through VOL connector.
15  */
16 
17 #ifndef _H5VLpassthru_H
18 #define _H5VLpassthru_H
19 
20 /* Public headers needed by this file */
21 #include "H5VLpublic.h" /* Virtual Object Layer */
22 
23 /* Identifier for the pass-through VOL connector */
24 #define H5VL_PASSTHRU (H5VL_pass_through_register())
25 
26 /* Characteristics of the pass-through VOL connector */
27 #define H5VL_PASSTHRU_NAME "pass_through"
28 #define H5VL_PASSTHRU_VALUE 505 /* VOL connector ID */
29 #define H5VL_PASSTHRU_VERSION 0
30 
31 /* Pass-through VOL connector info */
32 typedef struct H5VL_pass_through_info_t {
33  hid_t under_vol_id; /* VOL ID for under VOL */
34  void *under_vol_info; /* VOL info for under VOL */
36 
37 
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41 
43 
44 #ifdef __cplusplus
45 }
46 #endif
47 
48 #endif /* _H5VLpassthru_H */
49 
H5VLpublic.h
H5VL_pass_through_info_t
struct H5VL_pass_through_info_t H5VL_pass_through_info_t
hid_t
int64_t hid_t
Definition: H5Ipublic.h:55
H5VL_pass_through_info_t::under_vol_info
void * under_vol_info
Definition: H5VLpassthru.h:34
H5_DLL
#define H5_DLL
Definition: H5api_adpt.h:234
H5VL_pass_through_info_t
Definition: H5VLpassthru.h:32
H5VL_pass_through_info_t::under_vol_id
hid_t under_vol_id
Definition: H5VLpassthru.h:33
H5VL_pass_through_register
H5_DLL hid_t H5VL_pass_through_register(void)
Definition: H5VLpassthru.c:391