~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/hgfs_kernel.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-10-23 15:32:00 UTC
  • mfrom: (1.1.2 upstream) (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20081023153200-gc1bfx89hj35c799
Tags: 2008.10.10-123053-2
* Correcting typo in dh_installinit call.
* Downgrading depends on module-assistant to recommends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 * Macros
59
59
 */
60
60
 
61
 
#define HGFS_PAYLOAD_MAX(reply)         (HGFS_PACKET_MAX - sizeof *reply)
 
61
#define HGFS_PAYLOAD_MAX(size)         (HGFS_PACKET_MAX - size)
62
62
#define HGFS_FS_NAME                    "vmhgfs"
63
63
#define HGFS_FS_NAME_LONG               "VMware Hgfs client"
64
64
/*
157
157
 * single function signatures.
158
158
 */
159
159
#if defined(__FreeBSD__)
160
 
   typedef struct vattr HGFS_VNODE_ATTR;
 
160
   typedef struct vattr HgfsVnodeAttr;
161
161
#elif defined(__APPLE__)
162
 
   typedef struct vnode_attr HGFS_VNODE_ATTR;
 
162
   typedef struct vnode_attr HgfsVnodeAttr;
163
163
#endif
164
164
 
165
165
#if defined(__FreeBSD__)