summaryrefslogtreecommitdiffstats
path: root/src/H5lite.h
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2001-06-09 03:49:38 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2001-06-09 03:49:38 (GMT)
commit73b637bcf352918395b56cfb0952c4776d41ec5e (patch)
treef396f92c7bec50a24b5fdb4c6f4418726d638665 /src/H5lite.h
parent3a5b6aff1e9d7f75fcb74a86fb8c076b5d016987 (diff)
downloadhdf5-73b637bcf352918395b56cfb0952c4776d41ec5e.zip
hdf5-73b637bcf352918395b56cfb0952c4776d41ec5e.tar.gz
hdf5-73b637bcf352918395b56cfb0952c4776d41ec5e.tar.bz2
[svn-r3976] modified lite files
Diffstat (limited to 'src/H5lite.h')
-rwxr-xr-xsrc/H5lite.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/src/H5lite.h b/src/H5lite.h
deleted file mode 100755
index 30a3639..0000000
--- a/src/H5lite.h
+++ /dev/null
@@ -1,63 +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,
- hid_t mem_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