diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-01-21 16:18:23 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-01-21 16:18:23 (GMT) |
commit | 67657f93fffce4511447461207a5d431580503cc (patch) | |
tree | c10c42d0b521bbce3470a5192fb7ec299158f47f /src/H5Dpublic.h | |
parent | 747bb3f9fd714e2fd9bc334b9620b8fbbcdff50b (diff) | |
download | hdf5-67657f93fffce4511447461207a5d431580503cc.zip hdf5-67657f93fffce4511447461207a5d431580503cc.tar.gz hdf5-67657f93fffce4511447461207a5d431580503cc.tar.bz2 |
[svn-r1030] added necessary info to export functions to dll
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r-- | src/H5Dpublic.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h index 94f8d9b..26937ae 100644 --- a/src/H5Dpublic.h +++ b/src/H5Dpublic.h @@ -43,18 +43,18 @@ typedef enum H5D_transfer_t { extern "C" { #endif -hid_t H5Dcreate (hid_t file_id, const char *name, hid_t type_id, +HDF5API hid_t H5Dcreate (hid_t file_id, const char *name, hid_t type_id, hid_t space_id, hid_t plist_id); -hid_t H5Dopen (hid_t file_id, const char *name); -herr_t H5Dclose (hid_t dset_id); -hid_t H5Dget_space (hid_t dset_id); -hid_t H5Dget_type (hid_t dset_id); -hid_t H5Dget_create_plist (hid_t dset_id); -herr_t H5Dread (hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id, +HDF5API hid_t H5Dopen (hid_t file_id, const char *name); +HDF5API herr_t H5Dclose (hid_t dset_id); +HDF5API hid_t H5Dget_space (hid_t dset_id); +HDF5API hid_t H5Dget_type (hid_t dset_id); +HDF5API hid_t H5Dget_create_plist (hid_t dset_id); +HDF5API herr_t H5Dread (hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t plist_id, void *buf/*out*/); -herr_t H5Dwrite (hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id, +HDF5API herr_t H5Dwrite (hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t plist_id, const void *buf); -herr_t H5Dextend (hid_t dset_id, const hsize_t *size); +HDF5API herr_t H5Dextend (hid_t dset_id, const hsize_t *size); #ifdef __cplusplus } |