]> wimlib.net Git - wimlib/blobdiff - src/dentry.h
hardlinks (IN PROGRESS)
[wimlib] / src / dentry.h
index c1d167765b86dc527d1c9a003f5d9fb9abf1a26d..26832a50f73c937263082edb82a7eb7e1e622f96 100644 (file)
@@ -3,8 +3,10 @@
 
 #include "util.h"
 #include "config.h"
+#include "list.h"
 #include <string.h>
 
+
 struct stat;
 struct lookup_table;
 typedef struct WIMStruct WIMStruct;
@@ -186,10 +188,8 @@ struct dentry {
         * WIMStructs */
        int refcnt;
 
-       /* Next dentry in the hard link set */
-       //struct dentry *next_dentry_in_link_set;
-       /* Next hard link that has a lookup table entry */
-       //struct dentry *next_link_set;
+       /* List of dentries in the hard link set */
+       struct list_head link_group_list;
 };
 
 /* Return hash of the "unnamed" (default) data stream. */