home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 13 / MA_Cover_13.bin / source / c / nfsd / src / nfs_functions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-24  |  1.3 KB  |  32 lines

  1. /*  Headers for NFS functions
  2.  
  3.     ©1998, 1999 Joseph Walton
  4.  
  5.     This software is distributed under the terms of the GNU General Public
  6.     License; either version 2 of the License, or (at your option) any
  7.     later version.
  8. */
  9.  
  10. #ifndef NFSD_NFS_FUNCTIONS_H
  11. #define NFSD_NFS_FUNCTIONS_H
  12.  
  13. #include "nfs.h"
  14.  
  15. int nfsproc_getattr_2_svc(nfs_fh *handle, struct Call *call, int32 *rptr);
  16. int nfsproc_setattr_2_svc(struct sattrargs *args, struct Call *call, int32 *rptr);
  17. int nfsproc_lookup_2_svc(struct diropargs *argp, struct Call *call, int32 *rptr);
  18. int nfsproc_read_2_svc(struct readargs *argp, struct Call *call, int32 *rptr,
  19.     int32 *rlimit);
  20. int nfsproc_write_2_svc(struct writeargs *argp, struct Call *call, int32 *rptr);
  21. int nfsproc_create_2_svc(struct createargs *argp, struct Call *call, int32 *rptr);
  22. nfsstat nfsproc_remove_2_svc(struct diropargs *argp, struct Call *call);
  23. nfsstat nfsproc_rmdir_2_svc(struct diropargs *argp, struct Call *call);
  24. nfsstat nfsproc_rename_2_svc(struct renameargs *argp, struct Call *call);
  25. int nfsproc_mkdir_2_svc(struct createargs *argp, struct Call *call, int32 *rptr);
  26. int nfsproc_readdir(struct readdirargs *args, struct Call *call,
  27.     int32 *rptr, int32 *rlimit);
  28. int nfsproc_statfs_2_svc(nfs_fh *handle, struct Call *call, int32 *rptr);
  29.  
  30. #endif
  31.  
  32.