diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-17 23:21:49 (GMT) |
---|---|---|
committer | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2017-11-29 16:27:00 (GMT) |
commit | d5b70b549e41a1a48e3745cb2c076e8953b60a71 (patch) | |
tree | 21aaa37b73371f559da9d1d26cf1d516a0381f8b /src/H5PLprivate.h | |
parent | 459e214ed5c48cdee335fe02f4534ab48ac49e3e (diff) | |
download | hdf5-d5b70b549e41a1a48e3745cb2c076e8953b60a71.zip hdf5-d5b70b549e41a1a48e3745cb2c076e8953b60a71.tar.gz hdf5-d5b70b549e41a1a48e3745cb2c076e8953b60a71.tar.bz2 |
Brings H5Z and H5PL packages in sync with VOL integration branch.
Diffstat (limited to 'src/H5PLprivate.h')
-rw-r--r-- | src/H5PLprivate.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/H5PLprivate.h b/src/H5PLprivate.h index bc12e64..cc2e258 100644 --- a/src/H5PLprivate.h +++ b/src/H5PLprivate.h @@ -33,6 +33,11 @@ /* Library Private Typedefs */ /****************************/ +/* The key that will be used to find the plugin */ +typedef union H5PL_key_t { + int id; /* filters */ +} H5PL_key_t; + /*****************************/ /* Library-private Variables */ @@ -44,7 +49,7 @@ /***************************************/ /* Internal API routines */ -H5_DLL const void *H5PL_load(H5PL_type_t plugin_type, int type_id); +H5_DLL const void *H5PL_load(H5PL_type_t plugin_type, H5PL_key_t key); #endif /* _H5PLprivate_H */ |