summaryrefslogtreecommitdiffstats
path: root/src/H5Dprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r--src/H5Dprivate.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h
index 6068f00..6f0c23c 100644
--- a/src/H5Dprivate.h
+++ b/src/H5Dprivate.h
@@ -1,13 +1,13 @@
/****************************************************************************
- * NCSA HDF *
- * Software Development Group *
- * National Center for Supercomputing Applications *
- * University of Illinois at Urbana-Champaign *
- * 605 E. Springfield, Champaign IL 61820 *
- * *
- * For conditions of distribution and use, see the accompanying *
- * hdf/COPYING file. *
- * *
+ * NCSA HDF *
+ * Software Development Group *
+ * National Center for Supercomputing Applications *
+ * University of Illinois at Urbana-Champaign *
+ * 605 E. Springfield, Champaign IL 61820 *
+ * *
+ * For conditions of distribution and use, see the accompanying *
+ * hdf/COPYING file. *
+ * *
****************************************************************************/
/*
@@ -20,11 +20,11 @@
/* Private headers needed by this file */
#include <H5private.h>
-#include <H5Fprivate.h> /*for the H5F_t type */
-#include <H5Gprivate.h> /*symbol tables */
-#include <H5Oprivate.h> /*object Headers */
-#include <H5Sprivate.h> /*for the H5S_t type */
-#include <H5Tprivate.h> /*for the H5T_t type */
+#include <H5Fprivate.h> /*for the H5F_t type */
+#include <H5Gprivate.h> /*symbol tables */
+#include <H5Oprivate.h> /*object Headers */
+#include <H5Sprivate.h> /*for the H5S_t type */
+#include <H5Tprivate.h> /*for the H5T_t type */
/*
* Feature: Define H5D_DEBUG on the compiler command line if you want to
@@ -42,9 +42,9 @@
/* Dataset creation property list */
typedef struct H5D_create_t {
- H5D_layout_t layout; /*storage layout */
- intn chunk_ndims; /*chunk dimensionality */
- size_t chunk_size[32]; /*chunk size if chunked storage */
+ H5D_layout_t layout; /*storage layout */
+ intn chunk_ndims; /*chunk dimensionality */
+ hsize_t chunk_size[32]; /*chunk size if chunked storage */
H5O_efl_t efl; /*external file list */
} H5D_create_t;
@@ -62,16 +62,16 @@ extern const H5D_xfer_t H5D_xfer_dflt;
/* Functions defined in H5D.c */
H5D_t *H5D_create (H5G_t *loc, const char *name, const H5T_t *type,
- const H5S_t *space, const H5D_create_t *create_parms);
+ const H5S_t *space, const H5D_create_t *create_parms);
H5D_t *H5D_open (H5G_t *loc, const char *name);
herr_t H5D_close (H5D_t *dataset);
herr_t H5D_read (H5D_t *dataset, const H5T_t *mem_type,
- const H5S_t *mem_space, const H5S_t *file_space,
- const H5D_xfer_t *xfer_parms, void *buf/*out*/);
+ const H5S_t *mem_space, const H5S_t *file_space,
+ const H5D_xfer_t *xfer_parms, void *buf/*out*/);
herr_t H5D_write (H5D_t *dataset, const H5T_t *mem_type,
- const H5S_t *mem_space, const H5S_t *file_space,
- const H5D_xfer_t *xfer_parms, const void *buf);
+ const H5S_t *mem_space, const H5S_t *file_space,
+ const H5D_xfer_t *xfer_parms, const void *buf);
hid_t H5D_find_name (hid_t file_id, H5I_group_t UNUSED, const char *name);
-herr_t H5D_extend (H5D_t *dataset, const size_t *size);
+herr_t H5D_extend (H5D_t *dataset, const hsize_t *size);
#endif