summaryrefslogtreecommitdiffstats
path: root/src/H5RApublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-01-18 23:30:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-01-18 23:30:23 (GMT)
commit7921315a33816b58c7d055d4744df691c943eaa8 (patch)
treee654371403bcbf96fdee2458bf288dfc9cc531f9 /src/H5RApublic.h
parent0059525322df98fb6c6beaec2b89df93cc9657a8 (diff)
downloadhdf5-7921315a33816b58c7d055d4744df691c943eaa8.zip
hdf5-7921315a33816b58c7d055d4744df691c943eaa8.tar.gz
hdf5-7921315a33816b58c7d055d4744df691c943eaa8.tar.bz2
[svn-r3304] Purpose:
Code update Description: Remove ragged array code & tests from library before release. Platforms tested: FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'src/H5RApublic.h')
-rw-r--r--src/H5RApublic.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/H5RApublic.h b/src/H5RApublic.h
deleted file mode 100644
index 8478f90..0000000
--- a/src/H5RApublic.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright © 1998 NCSA
- * All rights reserved.
- *
- * Programmer: Robb Matzke <matzke@llnl.gov>
- * Tuesday, August 25, 1998
- */
-#ifndef _H5RApublic_H
-#define _H5RApublic_H
-
-#include <H5Ipublic.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-__DLL__ hid_t H5RAcreate(hid_t loc_id, const char *name, hid_t type_id,
- hid_t plist_id);
-__DLL__ hid_t H5RAopen(hid_t loc_id, const char *name);
-__DLL__ herr_t H5RAclose(hid_t array_id);
-__DLL__ herr_t H5RAwrite(hid_t array_id, hssize_t start_row, hsize_t nrows,
- hid_t type_id, hsize_t size[], void *buf[]);
-__DLL__ herr_t H5RAread(hid_t array_id, hssize_t start_row, hsize_t nrows,
- hid_t type_id, hsize_t size[], void *buf[]);
-
-#ifdef __cplusplus
-}
-#endif
-#endif