diff options
author | Frank Baker <fbaker@hdfgroup.org> | 2005-07-19 17:28:56 (GMT) |
---|---|---|
committer | Frank Baker <fbaker@hdfgroup.org> | 2005-07-19 17:28:56 (GMT) |
commit | 794ba0a251af47b8e3c60afa2fe92d267e2a6b55 (patch) | |
tree | f24cea3b81ff02fa3f31c0a1c4e80fa10f4393c0 /doc/html/TechNotes/VFLfunc.html | |
parent | d2e92fd23610c3ccdddbbc55484e54a5a21a9252 (diff) | |
download | hdf5-794ba0a251af47b8e3c60afa2fe92d267e2a6b55.zip hdf5-794ba0a251af47b8e3c60afa2fe92d267e2a6b55.tar.gz hdf5-794ba0a251af47b8e3c60afa2fe92d267e2a6b55.tar.bz2 |
[svn-r11084]
Description:
All HDF5 user documentation has been moved to a separate hdf5doc/
repository, managed under Subversion.
With this 'cvs commit', all files are stripped from hdf5/doc/.
THIS CHANGE IS APPLIED ONLY TO THE HDF5 DEVELOPMENT BRANCH,
post Release 1.6.x; it is not applied to the release branches.
Diffstat (limited to 'doc/html/TechNotes/VFLfunc.html')
-rw-r--r-- | doc/html/TechNotes/VFLfunc.html | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/doc/html/TechNotes/VFLfunc.html b/doc/html/TechNotes/VFLfunc.html deleted file mode 100644 index 1e33593..0000000 --- a/doc/html/TechNotes/VFLfunc.html +++ /dev/null @@ -1,64 +0,0 @@ -<html> -<head> -<title>VFL Functions</title> -</head> - -<body> - -<h1>List of HDF5 VFL Functions</h1> - -<pre> -The following functions support the HDF5 virtual file layer (VFL), enabling -the creation of customized I/O drivers. - -At this time, these functions are documented only in the <a href="VFL.html">HDF5 Virtual File -Layer</a> design document and in the source code. - - - -herr_t <font color=red>H5Pset_driver</font>(hid_t plist_id, hid_t driver_id, - const void *driver_info) - -void *<font color=red>H5Pget_driver_info</font>(hid_t plist_id) - -hid_t <font color=red>H5FDregister</font>(const H5FD_class_t *cls); - -herr_t <font color=red>H5FDunregister</font>(hid_t driver_id); - -H5FD_t *<font color=red>H5FDopen</font>(const char *name, unsigned flags, hid_t fapl_id, - haddr_t maxaddr); - -herr_t <font color=red>H5FDclose</font>(H5FD_t *file); - -int <font color=red>H5FDcmp</font>(const H5FD_t *f1, const H5FD_t *f2); - -int <font color=red>H5FDquery</font>(const H5FD_t *f, unsigned long *flags); - -haddr_t <font color=red>H5FDalloc</font>(H5FD_t *file, H5FD_mem_t type, hsize_t size); - -herr_t <font color=red>H5FDfree</font>(H5FD_t *file, H5FD_mem_t type, haddr_t addr, hsize_t size); - -haddr_t <font color=red>H5FDrealloc</font>(H5FD_t *file, H5FD_mem_t type, haddr_t addr, - hsize_t old_size, hsize_t new_size); - -haddr_t <font color=red>H5FDget_eoa</font>(H5FD_t *file); - -herr_t <font color=red>H5FDset_eoa</font>(H5FD_t *file, haddr_t eof); - -haddr_t <font color=red>H5FDget_eof</font>(H5FD_t *file); - -herr_t <font color=red>H5FDread</font>(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, - size_t size, void *buf/*out*/); - -herr_t <font color=red>H5FDwrite</font>(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, - haddr_t addr, size_t size, const void *buf); - -herr_t <font color=red>H5FDflush</font></font>(H5FD_t *file, unsigned closing); - -=========================================== -Last modified: 25 June 2002 -HDF Help Desk: hdfhelp@ncsa.uiuc.edu - -</pre> -</body> -</html> |