summaryrefslogtreecommitdiffstats
path: root/src/H5HLprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5HLprivate.h')
-rw-r--r--src/H5HLprivate.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5HLprivate.h b/src/H5HLprivate.h
index 3ac2e7a..8f7aa59 100644
--- a/src/H5HLprivate.h
+++ b/src/H5HLprivate.h
@@ -50,15 +50,15 @@
/*
* Library prototypes...
*/
-HDF5API herr_t H5HL_create (H5F_t *f, size_t size_hint, haddr_t *addr/*out*/);
+__DLL__ herr_t H5HL_create (H5F_t *f, size_t size_hint, haddr_t *addr/*out*/);
void *H5HL_read (H5F_t *f, const haddr_t *addr, size_t offset, size_t size,
void *buf);
-HDF5API const void *H5HL_peek (H5F_t *f, const haddr_t *addr, size_t offset);
-HDF5API size_t H5HL_insert (H5F_t *f, const haddr_t *addr, size_t size,
+__DLL__ const void *H5HL_peek (H5F_t *f, const haddr_t *addr, size_t offset);
+__DLL__ size_t H5HL_insert (H5F_t *f, const haddr_t *addr, size_t size,
const void *buf);
-herr_t H5HL_write (H5F_t *f, const haddr_t *addr, size_t offset, size_t size,
+__DLL__ herr_t H5HL_write (H5F_t *f, const haddr_t *addr, size_t offset, size_t size,
const void *buf);
-herr_t H5HL_remove (H5F_t *f, const haddr_t *addr, size_t offset, size_t size);
-HDF5API herr_t H5HL_debug (H5F_t *f, const haddr_t *addr, FILE * stream,
+__DLL__ herr_t H5HL_remove (H5F_t *f, const haddr_t *addr, size_t offset, size_t size);
+__DLL__ herr_t H5HL_debug (H5F_t *f, const haddr_t *addr, FILE * stream,
intn indent, intn fwidth);
#endif