diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2014-09-25 13:51:40 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2014-09-25 13:51:40 (GMT) |
commit | 510e79af7c180eae97ba5874a2659937e9101b4c (patch) | |
tree | 5fbd2103d2d5eac33164c57a35d71398323ce529 /src/H5PLprivate.h | |
parent | 0324181acc550459d21238759e4bbdf8c1cf37e5 (diff) | |
download | hdf5-510e79af7c180eae97ba5874a2659937e9101b4c.zip hdf5-510e79af7c180eae97ba5874a2659937e9101b4c.tar.gz hdf5-510e79af7c180eae97ba5874a2659937e9101b4c.tar.bz2 |
[svn-r25615] Include plugin header change. H5PLextern.h and H5PLprivate.h have two opposing use cases, only the enum is common.
Tested: local linux and windows
Diffstat (limited to 'src/H5PLprivate.h')
-rw-r--r-- | src/H5PLprivate.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/H5PLprivate.h b/src/H5PLprivate.h index b117613..587a51b 100644 --- a/src/H5PLprivate.h +++ b/src/H5PLprivate.h @@ -19,8 +19,18 @@ #ifndef _H5PLprivate_H #define _H5PLprivate_H -/* Include package's "external" header */ -#include "H5PLextern.h" +/* Keep the following in sync with the package's "external" header */ + +/*******************/ +/* Public Typedefs */ +/*******************/ + +/* Plugin type */ +typedef enum H5PL_type_t { + H5PL_TYPE_ERROR = -1, /*error */ + H5PL_TYPE_FILTER = 0, /*filter */ + H5PL_TYPE_NONE = 1 /*this must be last! */ +} H5PL_type_t; /* Private headers needed by this file */ #include "H5private.h" /* Generic Functions */ |