source: svn/trunk/newcon3bcm2_21bu/toolchain/mips-linux-uclibc/include/linux/smb_mount.h

Last change on this file was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 466 bytes
Line 
1/*
2 *  smb_mount.h
3 *
4 *  Copyright (C) 1995, 1996 by Paal-Kr. Engstad and Volker Lendecke
5 *  Copyright (C) 1997 by Volker Lendecke
6 *
7 */
8
9#ifndef _LINUX_SMB_MOUNT_H
10#define _LINUX_SMB_MOUNT_H
11
12#include <linux/types.h>
13
14#define SMB_MOUNT_VERSION       6
15
16struct smb_mount_data {
17        int version;
18        __kernel_uid_t mounted_uid; /* Who may umount() this filesystem? */
19        __kernel_uid_t uid;
20        __kernel_gid_t gid;
21        __kernel_mode_t file_mode;
22        __kernel_mode_t dir_mode;
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.