move the runlist functions from attrib.c to runlist.c
2002/06/06 15:45:06-00:00 !antona And the headerfile too 2002/04/22 10:34:31-00:00 !antona Attribute list support (merging done, part 2, some stuff still incomplete). mkntfs ntfs volume creation. See the changelog... 2002/04/19 18:23:56-00:00 !antona Add foundation of new inode API. 2002/04/14 13:56:44-00:00 !antona cleanup header files. 2002/04/12 15:23:47-00:00 !antona Cleanup ntfslabel, write a man page for it, integrate it all in the distribution properly, silence output from ntfs_mount() (conditional on running configure with --enable-debug), update all docs accordingly. Add Rich and Matt to AUTHORS. 2001/07/24 17:41:01-00:00 !antona Minor updates and restructuring the distribution. See NEWS and ChangeLog for details. 2001/06/01 02:07:24-00:00 !antona It has been a long time since last commit. At moment have done a lot of work on mkntfs but also at the moment ntfsfix and ntfsdump_logfile and libntfs are broken. Basically only mkntfs works and that is not complete either. 2001/04/11 11:49:15-00:00 !antona Header file reorganisation so that it compiles. 2001/04/07 00:53:37-00:00 !antona Makefile updates. 2001/03/26 03:42:13-00:00 !antona Forgot to add the new support.h 2001/02/03 02:03:35-00:00 !antona More files. 2001/02/02 01:28:46-00:00 !antona make dist fixes using more Makefiles. (Logical change 1.5)edge.strict_endians
parent
1483abd26c
commit
cea30149a6
|
@ -0,0 +1,29 @@
|
|||
|
||||
# Need this to enable 64-bit (device) file access functions and parameters.
|
||||
if DEBUG
|
||||
AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -g -DDEBUG
|
||||
else
|
||||
AM_CFLAGS = -D_FILE_OFFSET_BITS=64
|
||||
endif
|
||||
|
||||
linux_ntfsincludedir = $(includedir)/ntfs
|
||||
linux_ntfsinclude_HEADERS = \
|
||||
attrib.h \
|
||||
bitmap.h \
|
||||
bootsect.h \
|
||||
debug.h \
|
||||
dir.h \
|
||||
disk_io.h \
|
||||
endians.h \
|
||||
inode.h \
|
||||
layout.h \
|
||||
list.h \
|
||||
logfile.h \
|
||||
mft.h \
|
||||
mst.h \
|
||||
runlist.h \
|
||||
support.h \
|
||||
types.h \
|
||||
unistr.h \
|
||||
volume.h
|
||||
|
Loading…
Reference in New Issue