summaryrefslogtreecommitdiffstats
path: root/src/H5lite.h
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2001-06-15 18:53:49 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2001-06-15 18:53:49 (GMT)
commit4f40cff729c562ee6d3ff2cd0a7e40c9495801f7 (patch)
treee2a42c75c50cc75f3c05314ef195ce2e80e07743 /src/H5lite.h
parent4e080e981742bde1694b421ae7f98d298af2788f (diff)
downloadhdf5-4f40cff729c562ee6d3ff2cd0a7e40c9495801f7.zip
hdf5-4f40cff729c562ee6d3ff2cd0a7e40c9495801f7.tar.gz
hdf5-4f40cff729c562ee6d3ff2cd0a7e40c9495801f7.tar.bz2
[svn-r4008] remove image and lite
Diffstat (limited to 'src/H5lite.h')
-rwxr-xr-xsrc/H5lite.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/H5lite.h b/src/H5lite.h
deleted file mode 100755
index 84d3f02..0000000
--- a/src/H5lite.h
+++ /dev/null
@@ -1,62 +0,0 @@
-
-/****************************************************************************
- * NCSA HDF *
- * Scientific Data Technologies *
- * 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. *
- * *
- ****************************************************************************/
-
-
-#ifndef _H5lite_H
-#define _H5lite_H
-
-#include "H5private.h"
-#include "H5Ipublic.h"
-#include "H5Fpublic.h"
-#include "H5Tpublic.h"
-#include "H5Ppublic.h"
-#include "H5Spublic.h"
-#include "H5Gpublic.h"
-#include "H5Apublic.h"
-
-
-herr_t H5Lmake_dataset( hid_t loc_id,
- const char *dset_name,
- int rank,
- const hsize_t *dims,
- hid_t file_type_id,
- hid_t mem_type_id,
- const void *buffer );
-
-herr_t H5Lattach_attribute( hid_t loc_id,
- const char *dset_name,
- const char *attr_name,
- const char *attr_data );
-
-
-herr_t H5Lattach_attribute_numerical( hid_t loc_id,
- const char *dset_name,
- const char *attr_name,
- hsize_t dim,
- hid_t file_type_id,
- void *buffer );
-
-herr_t H5Lmake_groups( hid_t loc_id,
- int ngroups,
- const char *names[] );
-
-herr_t H5Lget_groups( hid_t loc_id,
- const char *group_name );
-
-herr_t H5Lget_attributes( hid_t loc_id );
-
-
-
-
-
-#endif