summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5Fpublic.h7
-rw-r--r--src/H5Tpublic.h7
2 files changed, 7 insertions, 7 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index b7db6de..36261cc 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -62,13 +62,6 @@ typedef enum H5F_scope_t {
/* Unlimited file size for H5Pset_external() */
#define H5F_UNLIMITED ((hsize_t)(-1L))
-/* How is the `bkg' buffer used by the conversion function? */
-typedef enum H5T_bkg_t {
- H5T_BKG_NO = 0, /*background buffer is not needed, send NULL */
- H5T_BKG_TEMP = 1, /*bkg buffer used as temp storage only */
- H5T_BKG_YES = 2 /*init bkg buf with data before conversion */
-} H5T_bkg_t;
-
/* How does file close behave?
* H5F_CLOSE_DEFAULT - Use the degree pre-defined by underlining VFL
* H5F_CLOSE_WEAK - file closes only after all opened objects are closed
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h
index 458340c..63451d1 100644
--- a/src/H5Tpublic.h
+++ b/src/H5Tpublic.h
@@ -136,6 +136,13 @@ typedef enum H5T_cmd_t {
H5T_CONV_FREE = 2 /*function is being removed from path */
} H5T_cmd_t;
+/* How is the `bkg' buffer used by the conversion function? */
+typedef enum H5T_bkg_t {
+ H5T_BKG_NO = 0, /*background buffer is not needed, send NULL */
+ H5T_BKG_TEMP = 1, /*bkg buffer used as temp storage only */
+ H5T_BKG_YES = 2 /*init bkg buf with data before conversion */
+} H5T_bkg_t;
+
/* Type conversion client data */
typedef struct H5T_cdata_t {
H5T_cmd_t command;/*what should the conversion function do? */