X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=ndk%2Fandroid-ndk-r4%2Flinux%2Fplatforms%2Fandroid-3%2Farch-arm%2Fusr%2Finclude%2Flinux%2Fncp_mount.h;fp=ndk%2Fandroid-ndk-r4%2Flinux%2Fplatforms%2Fandroid-3%2Farch-arm%2Fusr%2Finclude%2Flinux%2Fncp_mount.h;h=204869fcf18911366373d433b1e58149de820548;hb=72eddb87bfc38a2f6fae40566ec6380eb838489a;hp=0000000000000000000000000000000000000000;hpb=e19e12d257815bef7bfe4f3d81056a5b2464c464;p=android-x86%2Fprebuilt.git diff --git a/ndk/android-ndk-r4/linux/platforms/android-3/arch-arm/usr/include/linux/ncp_mount.h b/ndk/android-ndk-r4/linux/platforms/android-3/arch-arm/usr/include/linux/ncp_mount.h new file mode 100644 index 0000000..204869f --- /dev/null +++ b/ndk/android-ndk-r4/linux/platforms/android-3/arch-arm/usr/include/linux/ncp_mount.h @@ -0,0 +1,69 @@ +/**************************************************************************** + **************************************************************************** + *** + *** This header was automatically generated from a Linux kernel header + *** of the same name, to make information necessary for userspace to + *** call into the kernel available to libc. It contains only constants, + *** structures, and macros generated from the original header, and thus, + *** contains no copyrightable information. + *** + **************************************************************************** + ****************************************************************************/ +#ifndef _LINUX_NCP_MOUNT_H +#define _LINUX_NCP_MOUNT_H + +#include +#include + +#define NCP_MOUNT_VERSION 3 + +#define NCP_MOUNT_SOFT 0x0001 +#define NCP_MOUNT_INTR 0x0002 +#define NCP_MOUNT_STRONG 0x0004 +#define NCP_MOUNT_NO_OS2 0x0008 +#define NCP_MOUNT_NO_NFS 0x0010 +#define NCP_MOUNT_EXTRAS 0x0020 +#define NCP_MOUNT_SYMLINKS 0x0040 +#define NCP_MOUNT_NFS_EXTRAS 0x0080 + +struct ncp_mount_data { + int version; + unsigned int ncp_fd; + __kernel_uid_t mounted_uid; + __kernel_pid_t wdog_pid; + + unsigned char mounted_vol[NCP_VOLNAME_LEN + 1]; + unsigned int time_out; + unsigned int retry_count; + unsigned int flags; + + __kernel_uid_t uid; + __kernel_gid_t gid; + __kernel_mode_t file_mode; + __kernel_mode_t dir_mode; +}; + +#define NCP_MOUNT_VERSION_V4 (4) + +struct ncp_mount_data_v4 { + int version; + unsigned long flags; + + unsigned long mounted_uid; + + long wdog_pid; + + unsigned int ncp_fd; + unsigned int time_out; + unsigned int retry_count; + + unsigned long uid; + unsigned long gid; + + unsigned long file_mode; + unsigned long dir_mode; +}; + +#define NCP_MOUNT_VERSION_V5 (5) + +#endif