diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:55:10 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:55:10 (GMT) |
commit | 3234df6fb19d5481a3cde34e0d01b64aaf5931c8 (patch) | |
tree | 28886175a37ec60ffee2768c7f1594406ea207f5 /src/H5Apublic.h | |
parent | 3d6d039b864ef9f2fcf3298bb6195541b4b226f8 (diff) | |
download | hdf5-3234df6fb19d5481a3cde34e0d01b64aaf5931c8.zip hdf5-3234df6fb19d5481a3cde34e0d01b64aaf5931c8.tar.gz hdf5-3234df6fb19d5481a3cde34e0d01b64aaf5931c8.tar.bz2 |
[svn-r1052] changed the HDF5GLOBAL and HDF5DLL to __DLLVAR and __DLL__
also exported all the non static functions and globals variables to the dll
Diffstat (limited to 'src/H5Apublic.h')
-rw-r--r-- | src/H5Apublic.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/H5Apublic.h b/src/H5Apublic.h index 4b14943..3fc1d6e 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 */ -HDF5API hid_t H5Acreate(hid_t loc_id, const char *name, hid_t type_id, +__DLL__ hid_t H5Acreate(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id, hid_t plist_id); -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, +__DLL__ hid_t H5Aopen_name(hid_t loc_id, const char *name); +__DLL__ hid_t H5Aopen_idx(hid_t loc_id, unsigned idx); +__DLL__ herr_t H5Awrite(hid_t attr_id, hid_t type_id, void *buf); +__DLL__ herr_t H5Aread(hid_t attr_id, hid_t type_id, void *buf); +__DLL__ herr_t H5Aclose(hid_t attr_id); +__DLL__ hid_t H5Aget_space(hid_t attr_id); +__DLL__ hid_t H5Aget_type(hid_t attr_id); +__DLL__ hssize_t H5Aget_name(hid_t attr_id, size_t buf_size, char *buf); +__DLL__ int H5Aget_num_attrs(hid_t loc_id); +__DLL__ int H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op, void *op_data); -HDF5API herr_t H5Adelete(hid_t loc_id, const char *name); +__DLL__ herr_t H5Adelete(hid_t loc_id, const char *name); #ifdef __cplusplus } |