diff options
Diffstat (limited to 'src/H5VLpassthru.h')
-rw-r--r-- | src/H5VLpassthru.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/H5VLpassthru.h b/src/H5VLpassthru.h index d145bcd..a8ef42c 100644 --- a/src/H5VLpassthru.h +++ b/src/H5VLpassthru.h @@ -18,23 +18,22 @@ #define _H5VLpassthru_H /* Public headers needed by this file */ -#include "H5VLpublic.h" /* Virtual Object Layer */ +#include "H5VLpublic.h" /* Virtual Object Layer */ /* Identifier for the pass-through VOL connector */ -#define H5VL_PASSTHRU (H5VL_pass_through_register()) +#define H5VL_PASSTHRU (H5VL_pass_through_register()) /* Characteristics of the pass-through VOL connector */ -#define H5VL_PASSTHRU_NAME "pass_through" -#define H5VL_PASSTHRU_VALUE 505 /* VOL connector ID */ -#define H5VL_PASSTHRU_VERSION 0 +#define H5VL_PASSTHRU_NAME "pass_through" +#define H5VL_PASSTHRU_VALUE 505 /* VOL connector ID */ +#define H5VL_PASSTHRU_VERSION 0 /* Pass-through VOL connector info */ typedef struct H5VL_pass_through_info_t { - hid_t under_vol_id; /* VOL ID for under VOL */ - void *under_vol_info; /* VOL info for under VOL */ + hid_t under_vol_id; /* VOL ID for under VOL */ + void *under_vol_info; /* VOL info for under VOL */ } H5VL_pass_through_info_t; - #ifdef __cplusplus extern "C" { #endif @@ -46,4 +45,3 @@ H5_DLL hid_t H5VL_pass_through_register(void); #endif #endif /* _H5VLpassthru_H */ - |