diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-10-17 21:19:11 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-10-17 21:19:11 (GMT) |
commit | ce30ee9b28e9b68de817845aa5bc965d35ca8967 (patch) | |
tree | e2b60196c77f8fbb1f0213bf07ca5e0e90817102 /hl/src | |
parent | 2d586abc2773635199351a80897fbcd7381c223b (diff) | |
download | hdf5-ce30ee9b28e9b68de817845aa5bc965d35ca8967.zip hdf5-ce30ee9b28e9b68de817845aa5bc965d35ca8967.tar.gz hdf5-ce30ee9b28e9b68de817845aa5bc965d35ca8967.tar.bz2 |
[svn-r12773] Removed Variable-length packet tables from the HL libraries.
This is a quick change to make sure nothing breaks; VL functions in
the header files have been #ifdef'd out.
Tested on mir.
Diffstat (limited to 'hl/src')
-rw-r--r-- | hl/src/H5PTpublic.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hl/src/H5PTpublic.h b/hl/src/H5PTpublic.h index 756eb51..e45f2bc 100644 --- a/hl/src/H5PTpublic.h +++ b/hl/src/H5PTpublic.h @@ -33,9 +33,11 @@ H5_HLDLL hid_t H5PTcreate_fl ( hid_t loc_id, hsize_t chunk_size, int compression ); +#ifdef VLPT_REMOVED H5_HLDLL hid_t H5PTcreate_vl ( hid_t loc_id, const char *dset_name, hsize_t chunk_size ); +#endif /* VLPT_REMOVED */ H5_HLDLL hid_t H5PTopen( hid_t loc_id, const char *dset_name ); @@ -84,7 +86,9 @@ H5_HLDLL herr_t H5PTget_num_packets( hid_t table_id, H5_HLDLL herr_t H5PTis_valid( hid_t table_id ); +#ifdef VLPT_REMOVED H5_HLDLL herr_t H5PTis_varlen( hid_t table_id ); +#endif /* VLPT_REMOVED */ /*------------------------------------------------------------------------- * @@ -108,9 +112,11 @@ H5_HLDLL herr_t H5PTget_index( hid_t table_id, *------------------------------------------------------------------------- */ +#ifdef VLPT_REMOVED H5_HLDLL herr_t H5PTfree_vlen_readbuff( hid_t table_id, size_t bufflen, void * buff ); +#endif /* VLPT_REMOVED */ #ifdef __cplusplus } |