Deleted Added
full compact
msdosfsmount.h (204470) msdosfsmount.h (213664)
1/* $FreeBSD: head/sys/fs/msdosfs/msdosfsmount.h 204470 2010-02-28 17:13:07Z kib $ */
1/* $FreeBSD: head/sys/fs/msdosfs/msdosfsmount.h 213664 2010-10-10 07:05:47Z kib $ */
2/* $NetBSD: msdosfsmount.h,v 1.17 1997/11/17 15:37:07 ws Exp $ */
3
4/*-
5 * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
6 * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7 * All rights reserved.
8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9 *

--- 219 unchanged lines hidden (view full) ---

229
230#endif /* _KERNEL */
231
232/*
233 * Arguments to mount MSDOS filesystems.
234 */
235struct msdosfs_args {
236 char *fspec; /* blocks special holding the fs to mount */
2/* $NetBSD: msdosfsmount.h,v 1.17 1997/11/17 15:37:07 ws Exp $ */
3
4/*-
5 * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
6 * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7 * All rights reserved.
8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9 *

--- 219 unchanged lines hidden (view full) ---

229
230#endif /* _KERNEL */
231
232/*
233 * Arguments to mount MSDOS filesystems.
234 */
235struct msdosfs_args {
236 char *fspec; /* blocks special holding the fs to mount */
237 struct export_args export; /* network export information */
237 struct oexport_args export; /* network export information */
238 uid_t uid; /* uid that owns msdosfs files */
239 gid_t gid; /* gid that owns msdosfs files */
240 mode_t mask; /* file mask to be applied for msdosfs perms */
241 int flags; /* see below */
242 int magic; /* version number */
243 u_int16_t u2w[128]; /* Local->Unicode table */
244 char *cs_win; /* Windows(Unicode) Charset */
245 char *cs_dos; /* DOS Charset */

--- 23 unchanged lines hidden ---
238 uid_t uid; /* uid that owns msdosfs files */
239 gid_t gid; /* gid that owns msdosfs files */
240 mode_t mask; /* file mask to be applied for msdosfs perms */
241 int flags; /* see below */
242 int magic; /* version number */
243 u_int16_t u2w[128]; /* Local->Unicode table */
244 char *cs_win; /* Windows(Unicode) Charset */
245 char *cs_dos; /* DOS Charset */

--- 23 unchanged lines hidden ---