[svn-r3221] ./hdf5/src/H5FDprivate.h

2000-12-29 09:06:25 Robb Matzke  <matzke@llnl.gov>
	* H5FD_query: Marked `flags' argument as /*out*/
This commit is contained in:
Robb Matzke 2000-12-29 13:35:23 -05:00
parent 244b5772b8
commit 0220abb8cd

View File

@ -26,7 +26,7 @@ __DLL__ H5FD_t *H5FD_open(const char *name, unsigned flags, hid_t fapl_id,
haddr_t maxaddr);
__DLL__ herr_t H5FD_close(H5FD_t *file);
__DLL__ int H5FD_cmp(const H5FD_t *f1, const H5FD_t *f2);
__DLL__ int H5FD_query(const H5FD_t *f, unsigned long *flags);
__DLL__ int H5FD_query(const H5FD_t *f, unsigned long *flags/*out*/);
__DLL__ haddr_t H5FD_alloc(H5FD_t *file, H5FD_mem_t type, hsize_t size);
__DLL__ herr_t H5FD_free(H5FD_t *file, H5FD_mem_t type, haddr_t addr, hsize_t size);
__DLL__ haddr_t H5FD_realloc(H5FD_t *file, H5FD_mem_t type, haddr_t old_addr,