summaryrefslogtreecommitdiffstats
path: root/src/H5Apublic.h
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-01-21 16:18:23 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-01-21 16:18:23 (GMT)
commit67657f93fffce4511447461207a5d431580503cc (patch)
treec10c42d0b521bbce3470a5192fb7ec299158f47f /src/H5Apublic.h
parent747bb3f9fd714e2fd9bc334b9620b8fbbcdff50b (diff)
downloadhdf5-67657f93fffce4511447461207a5d431580503cc.zip
hdf5-67657f93fffce4511447461207a5d431580503cc.tar.gz
hdf5-67657f93fffce4511447461207a5d431580503cc.tar.bz2
[svn-r1030] added necessary info to export functions to dll
Diffstat (limited to 'src/H5Apublic.h')
-rw-r--r--src/H5Apublic.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/H5Apublic.h b/src/H5Apublic.h
index 43542a3..aa40778 100644
--- a/src/H5Apublic.h
+++ b/src/H5Apublic.h
@@ -27,20 +27,20 @@ typedef int (*H5A_operator_t)(hid_t location_id/*in*/,
const char *attr_name/*in*/, void *operator_data/*in,out*/);
/* Public function prototypes */
-hid_t H5Acreate(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id,
+HDF5API hid_t H5Acreate(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id,
hid_t plist_id);
-hid_t H5Aopen_name(hid_t loc_id, const char *name);
-hid_t H5Aopen_idx(hid_t loc_id, unsigned idx);
-herr_t H5Awrite(hid_t attr_id, hid_t type_id, void *buf);
-herr_t H5Aread(hid_t attr_id, hid_t type_id, void *buf);
-herr_t H5Aclose(hid_t attr_id);
-hid_t H5Aget_space(hid_t attr_id);
-hid_t H5Aget_type(hid_t attr_id);
-hssize_t H5Aget_name(hid_t attr_id, size_t buf_size, char *buf);
-int H5Aget_num_attrs(hid_t loc_id);
-int H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op,
+HDF5API hid_t H5Aopen_name(hid_t loc_id, const char *name);
+HDF5API hid_t H5Aopen_idx(hid_t loc_id, unsigned idx);
+HDF5API herr_t H5Awrite(hid_t attr_id, hid_t type_id, void *buf);
+HDF5API herr_t H5Aread(hid_t attr_id, hid_t type_id, void *buf);
+HDF5API herr_t H5Aclose(hid_t attr_id);
+HDF5API hid_t H5Aget_space(hid_t attr_id);
+HDF5API hid_t H5Aget_type(hid_t attr_id);
+HDF5API hssize_t H5Aget_name(hid_t attr_id, size_t buf_size, char *buf);
+HDF5API int H5Aget_num_attrs(hid_t loc_id);
+HDF5API int H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op,
void *op_data);
-herr_t H5Adelete(hid_t loc_id, const char *name);
+HDF5API herr_t H5Adelete(hid_t loc_id, const char *name);
#ifdef __cplusplus
}