~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to modules/freebsd/vmhgfs/vnopscommon.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-11-20 21:56:00 UTC
  • mfrom: (1.1.3 upstream) (2.2.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20081120215600-0jujiv17a2ja92xu
Tags: 2008.11.18-130226-1
* Replacing obsolete dh_clean -k with dh_prep.
* Merging upstream version 2008.11.18-130226.
* Updating debian directory for addition of pvscsi and vmxnet3 modules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
int HgfsCreateInt(struct vnode *dvp, struct vnode **vpp,
76
76
                  struct componentname *cnp, int mode);
77
77
int HgfsReadInt(struct vnode *vp, struct uio *uiop);
 
78
int HgfsReadlinkInt(struct vnode *vp, struct uio *uiop);
78
79
int HgfsWriteInt(struct vnode *vp, struct uio *uiop, int ioflag);
79
80
int HgfsMkdirInt(struct vnode *dvp, struct vnode **vpp,
80
81
                 struct componentname *cnp, int mode);
82
83
                  struct vnode *tdvp, struct vnode *tvp,
83
84
                  struct componentname *tcnp);
84
85
int HgfsAccessInt(struct vnode *vp, int mode);
 
86
int HgfsSymlinkInt(struct vnode *dvp,
 
87
                   struct vnode **vpp,
 
88
                   struct componentname *cnp,
 
89
                   char *targetName);
 
90
 
85
91
#endif // _HGFS_VNOPS_COMMON_H_