From bd8a6667cf1212ea20afa3a669f92e09fdaacdbb Mon Sep 17 00:00:00 2001 From: "flatcap.org!ntfs" Date: Thu, 12 Aug 2004 09:23:53 +0000 Subject: [PATCH] ref count inodes 2004/08/10 16:19:44+01:00 flatcap.org!ntfs add private data to ntfs inode (Logical change 1.493) --- include/ntfs/inode.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/ntfs/inode.h b/include/ntfs/inode.h index 24fc7bc4..c9130822 100644 --- a/include/ntfs/inode.h +++ b/include/ntfs/inode.h @@ -107,6 +107,9 @@ struct _ntfs_inode { ntfs_inode *base_ni; /* For nr_extents == -1, the ntfs inode of the base mft record. */ }; + + void *private_data; /* Temp: for directory handling */ + int ref_count; }; extern ntfs_inode *ntfs_inode_open(ntfs_volume *vol, const MFT_REF mref);