[svn-r12231] Purpose:

fix, forgot to cvs remove one file of the privious check in

Description:

Solution:

Platforms tested:

Misc. update:
This commit is contained in:
Pedro Vicente Nunes 2006-04-12 16:33:53 -05:00
parent b51ac70ed9
commit 7248b78c50
2 changed files with 0 additions and 57 deletions

View File

@ -1294,7 +1294,6 @@
./hl/src/H5TB.c
./hl/src/H5DS.c
./hl/src/H5PT.c
./hl/src/H5HL_private.c
./hl/src/H5LTanalyze.l
./hl/src/H5LTanalyze.c
./hl/src/H5LTparse.y

View File

@ -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