summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2006-04-12 21:33:53 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2006-04-12 21:33:53 (GMT)
commit7248b78c509340f48ad31c50cfe59bfa593b500d (patch)
tree6d479d6f3397d422dd716fc9e0ec12018a1509eb /hl
parentb51ac70ed9baeabfc7fe5a0a31200b69b11f27cf (diff)
downloadhdf5-7248b78c509340f48ad31c50cfe59bfa593b500d.zip
hdf5-7248b78c509340f48ad31c50cfe59bfa593b500d.tar.gz
hdf5-7248b78c509340f48ad31c50cfe59bfa593b500d.tar.bz2
[svn-r12231] Purpose:
fix, forgot to cvs remove one file of the privious check in Description: Solution: Platforms tested: Misc. update:
Diffstat (limited to 'hl')
-rw-r--r--hl/src/H5HL_private.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/hl/src/H5HL_private.h b/hl/src/H5HL_private.h
deleted file mode 100644
index 858d3b9..0000000
--- a/hl/src/H5HL_private.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Copyright by the Board of Trustees of the University of Illinois. *
- * All rights reserved. *
- * *
- * This file is part of HDF5. The full HDF5 copyright notice, including *
- * terms governing use, modification, and redistribution, is contained in *
- * the files COPYING and Copyright.html. COPYING can be found at the root *
- * of the source code distribution tree; Copyright.html can be found at the *
- * root level of an installed copy of the electronic HDF5 document set and *
- * is linked from the top-level documents page. It can also be found at *
- * http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have *
- * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
-#ifndef _H5HL_private_H
-#define _H5HL_private_H
-
-#include <hdf5.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*-------------------------------------------------------------------------
- *
- * Private write function used by H5TB and H5PT
- *
- *-------------------------------------------------------------------------
- */
-
-herr_t H5TBcommon_append_records( hid_t dataset_id,
- hid_t mem_type_id,
- hsize_t nrecords,
- hsize_t orig_table_size,
- const void * data);
-
-/*-------------------------------------------------------------------------
- *
- * Private read function used by H5TB and H5PT
- *
- *-------------------------------------------------------------------------
- */
-
-
-herr_t H5TBcommon_read_records( hid_t dataset_id,
- hid_t mem_type_id,
- hsize_t start,
- hsize_t nrecords,
- hsize_t table_size,
- void *data);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif