diff options
author | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-07-22 21:34:53 (GMT) |
---|---|---|
committer | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-07-22 21:34:53 (GMT) |
commit | 200dcdb6d03a3ecceb1a93504f5d2a3ccfb82367 (patch) | |
tree | faee6e4c828008042dc470c08977ea63edc8406c /hl/src/H5PT.h | |
parent | 02f74aa59e2c10576d628fd9d49b6874bea4155b (diff) | |
download | hdf5-200dcdb6d03a3ecceb1a93504f5d2a3ccfb82367.zip hdf5-200dcdb6d03a3ecceb1a93504f5d2a3ccfb82367.tar.gz hdf5-200dcdb6d03a3ecceb1a93504f5d2a3ccfb82367.tar.bz2 |
[svn-r11112] Purpose:
Improvement
Description:
Add high level dll macro for windows
Solution:
Platforms tested:
MSVS 6.0 on windows xp, cygwin, heping and copper
Misc. update:
Diffstat (limited to 'hl/src/H5PT.h')
-rw-r--r-- | hl/src/H5PT.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/hl/src/H5PT.h b/hl/src/H5PT.h index 606814c..699419e 100644 --- a/hl/src/H5PT.h +++ b/hl/src/H5PT.h @@ -31,19 +31,19 @@ extern "C" { *------------------------------------------------------------------------- */ -hid_t H5PTcreate_fl ( hid_t loc_id, +H5_HLDLL hid_t H5PTcreate_fl ( hid_t loc_id, const char *dset_name, hid_t dtype_id, hsize_t chunk_size ); -hid_t H5PTcreate_vl ( hid_t loc_id, +H5_HLDLL hid_t H5PTcreate_vl ( hid_t loc_id, const char *dset_name, hsize_t chunk_size ); -hid_t H5PTopen( hid_t loc_id, +H5_HLDLL hid_t H5PTopen( hid_t loc_id, char *dset_name ); -herr_t H5PTclose( hid_t table_id ); +H5_HLDLL herr_t H5PTclose( hid_t table_id ); /*------------------------------------------------------------------------- @@ -53,7 +53,7 @@ herr_t H5PTclose( hid_t table_id ); *------------------------------------------------------------------------- */ -herr_t H5PTappend( hid_t table_id, +H5_HLDLL herr_t H5PTappend( hid_t table_id, hsize_t nrecords, const void * data ); @@ -65,11 +65,11 @@ herr_t H5PTappend( hid_t table_id, */ -herr_t H5PTget_next( hid_t table_id, +H5_HLDLL herr_t H5PTget_next( hid_t table_id, hsize_t nrecords, void * data ); -herr_t H5PTread_packets( hid_t table_id, +H5_HLDLL herr_t H5PTread_packets( hid_t table_id, hsize_t start, hsize_t nrecords, void *data ); @@ -82,12 +82,12 @@ herr_t H5PTread_packets( hid_t table_id, */ -herr_t H5PTget_num_packets( hid_t table_id, +H5_HLDLL herr_t H5PTget_num_packets( hid_t table_id, hsize_t *nrecords ); -herr_t H5PTis_valid( hid_t table_id ); +H5_HLDLL herr_t H5PTis_valid( hid_t table_id ); -herr_t H5PTis_varlen( hid_t table_id ); +H5_HLDLL herr_t H5PTis_varlen( hid_t table_id ); /*------------------------------------------------------------------------- * @@ -96,9 +96,9 @@ herr_t H5PTis_varlen( hid_t table_id ); *------------------------------------------------------------------------- */ -herr_t H5PTcreate_index( hid_t table_id ); +H5_HLDLL herr_t H5PTcreate_index( hid_t table_id ); -herr_t H5PTset_index( hid_t table_id, +H5_HLDLL herr_t H5PTset_index( hid_t table_id, hsize_t pt_index ); /*------------------------------------------------------------------------- @@ -108,7 +108,7 @@ herr_t H5PTset_index( hid_t table_id, *------------------------------------------------------------------------- */ -herr_t H5PTfree_vlen_readbuff( hid_t table_id, +H5_HLDLL herr_t H5PTfree_vlen_readbuff( hid_t table_id, hsize_t bufflen, void * buff ); |