summaryrefslogtreecommitdiffstats
path: root/src/H5PLprivate.h
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-10-01 14:04:36 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-10-01 14:04:36 (GMT)
commitf1ba03cea5b82699a984c80bd2deac14fdc8df18 (patch)
treeebe777c3e0b83f4c4cec9212731da9ebe0a0cfd3 /src/H5PLprivate.h
parent10343c197906415388f2a4c8d292e21d25cf7381 (diff)
downloadhdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.zip
hdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.tar.gz
hdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.tar.bz2
Source formatted
Diffstat (limited to 'src/H5PLprivate.h')
-rw-r--r--src/H5PLprivate.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/H5PLprivate.h b/src/H5PLprivate.h
index 5ce9b87..43930ad 100644
--- a/src/H5PLprivate.h
+++ b/src/H5PLprivate.h
@@ -21,37 +21,33 @@
#include "H5PLpublic.h"
/* Private headers needed by this file */
-#include "H5private.h" /* Generic Functions */
-#include "H5VLprivate.h" /* Virtual Object Layer */
-
+#include "H5private.h" /* Generic Functions */
+#include "H5VLprivate.h" /* Virtual Object Layer */
/**************************/
/* Library Private Macros */
/**************************/
-
/****************************/
/* Library Private Typedefs */
/****************************/
/* The key that will be used to find the plugin */
typedef union H5PL_key_t {
- int id; /* I/O filters */
+ int id; /* I/O filters */
struct {
H5VL_get_connector_kind_t kind; /* Kind of VOL lookup to do */
union {
- H5VL_class_value_t value; /* VOL connector value */
- const char *name; /* VOL connector name */
+ H5VL_class_value_t value; /* VOL connector value */
+ const char * name; /* VOL connector name */
} u;
} vol;
} H5PL_key_t;
-
/*****************************/
/* Library-private Variables */
/*****************************/
-
/***************************************/
/* Library-private Function Prototypes */
/***************************************/
@@ -60,4 +56,3 @@ typedef union H5PL_key_t {
H5_DLL const void *H5PL_load(H5PL_type_t plugin_type, const H5PL_key_t *key);
#endif /* _H5PLprivate_H */
-