Last change
on this file since 8130 was 6734, checked in by vboxsync, 17 years ago |
Don't list the header in SOURCES, this isn't automake.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
954 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | * vboxvfs -- VirtualBox Guest Additions for Linux: mount(2) parameter structure.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef VBFS_MOUNT_H
|
---|
18 | #define VBFS_MOUNT_H
|
---|
19 |
|
---|
20 | #define MAX_HOST_NAME 256
|
---|
21 | #define MAX_NLS_NAME 32
|
---|
22 |
|
---|
23 | /* Linux constraints the size of data mount argument to PAGE_SIZE - 1 */
|
---|
24 | struct vbsf_mount_info {
|
---|
25 | char name[MAX_HOST_NAME];
|
---|
26 | char nls_name[MAX_NLS_NAME];
|
---|
27 | int uid;
|
---|
28 | int gid;
|
---|
29 | int ttl;
|
---|
30 | };
|
---|
31 |
|
---|
32 | #endif /* vbsfmount.h */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.