summaryrefslogtreecommitdiffstats
path: root/src/H5EAprivate.h
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2012-04-06 17:08:37 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2012-04-06 17:08:37 (GMT)
commitedebad0e78f322580c17647e57f6e74a1d0f5dcf (patch)
tree4edc97d13bc2131413654a30359942db2585e916 /src/H5EAprivate.h
parentd5a62239587f7cc5de301fa5c6b0919807689818 (diff)
downloadhdf5-edebad0e78f322580c17647e57f6e74a1d0f5dcf.zip
hdf5-edebad0e78f322580c17647e57f6e74a1d0f5dcf.tar.gz
hdf5-edebad0e78f322580c17647e57f6e74a1d0f5dcf.tar.bz2
[svn-r22255] Fix windows compile errors:
vs2008 needed H5private.h in H5Oflush.c VS needs windows export decoration (H5DLLVAR) in header used by source file of origin Tested: windows
Diffstat (limited to 'src/H5EAprivate.h')
-rw-r--r--src/H5EAprivate.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/H5EAprivate.h b/src/H5EAprivate.h
index feb58b7..60dbca1 100644
--- a/src/H5EAprivate.h
+++ b/src/H5EAprivate.h
@@ -15,11 +15,11 @@
/*-------------------------------------------------------------------------
*
- * Created: H5EAprivate.h
- * Jun 17 2008
- * Quincey Koziol <koziol@hdfgroup.org>
+ * Created: H5EAprivate.h
+ * Jun 17 2008
+ * Quincey Koziol <koziol@hdfgroup.org>
*
- * Purpose: Private header for library accessible extensible
+ * Purpose: Private header for library accessible extensible
* array routines.
*
*-------------------------------------------------------------------------
@@ -34,8 +34,8 @@
#endif /* NOT_YET */
/* Private headers needed by this file */
-#include "H5ACprivate.h" /* Metadata cache */
-#include "H5Fprivate.h" /* File access */
+#include "H5ACprivate.h" /* Metadata cache */
+#include "H5Fprivate.h" /* File access */
/**************************/
@@ -54,7 +54,7 @@ typedef enum H5EA_cls_id_t {
/* Start real class IDs at 0 -QAK */
/* (keep these last) */
- H5EA_CLS_TEST_ID, /* Extensible array is for testing (do not use for actual data) */
+ H5EA_CLS_TEST_ID, /* Extensible array is for testing (do not use for actual data) */
H5EA_NUM_CLS_ID /* Number of Extensible Array class IDs (must be last) */
} H5EA_cls_id_t;
@@ -120,6 +120,12 @@ typedef struct H5EA_t H5EA_t;
/* Library-private Variables */
/*****************************/
+/* The Extensible Array class for dataset chunks w/o filters*/
+H5_DLLVAR const H5EA_class_t H5EA_CLS_CHUNK[1];
+
+/* The Extensible Array class for dataset chunks w/ filters*/
+H5_DLLVAR const H5EA_class_t H5EA_CLS_FILT_CHUNK[1];
+
/***************************************/
/* Library-private Function Prototypes */