/* * ncp_fs_i.h * * Copyright (C) 1995 Volker Lendecke * */#ifndef _LINUX_NCP_FS_I#define _LINUX_NCP_FS_I/* * This is the ncpfs part of the inode structure. This must contain * all the information we need to work with an inode after creation. */structncp_inode_info{__le32dirEntNum;__le32DosDirNum;__u8volNumber;__le32nwattr;structmutexopen_mutex;atomic_topened;intaccess;intflags;#define NCPI_KLUDGE_SYMLINK 0x0001__u8file_handle[6];structinodevfs_inode;};#endif /* _LINUX_NCP_FS_I */