summaryrefslogtreecommitdiffstats
path: root/src/H5PLprivate.h
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2014-09-25 17:31:54 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2014-09-25 17:31:54 (GMT)
commit0773ea2f19f4338030b72ba0e99534253e38215f (patch)
tree3de8cb75095236955c70e442886261518dd644b3 /src/H5PLprivate.h
parent39f52896fff40b50296ab9d6d75c4181b9c9c606 (diff)
downloadhdf5-0773ea2f19f4338030b72ba0e99534253e38215f.zip
hdf5-0773ea2f19f4338030b72ba0e99534253e38215f.tar.gz
hdf5-0773ea2f19f4338030b72ba0e99534253e38215f.tar.bz2
[svn-r25619] 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.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/H5PLprivate.h b/src/H5PLprivate.h
index ee03def..a1b77ea 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 */