Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/libntfs
In directory usw-pr-cvs1:/tmp/cvs-serv32418/libntfs
Modified Files:
attrib.c
Log Message:
Add a description and structure for holding attributes in memory. No code to
use it yet but it's a start. The design is geared with the ideas of making
searching for attributes and using/implementing the search context as easy as
possible, integrating the attributes into their mft_entries and maintining a
fast sync volume path.
Comments welcome.
Index: attrib.c
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/attrib.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -U2 -r1.12 -r1.13
--- attrib.c 2001/04/11 11:49:16 1.12
+++ attrib.c 2001/04/12 22:37:21 1.13
@@ -37,4 +37,14 @@
#include "support.h"
+int __map_attribute_value(attr *a)
+{
+ return -ENOTSUP;
+}
+
+int __unmap_attribute_value(attr *a)
+{
+ return -ENOTSUP;
+}
+
/**
* find_attr - find (next) attribute in mft record
|