Author: pschweitzer Date: Sun Nov 15 11:15:24 2009 New Revision: 44170
URL: http://svn.reactos.org/svn/reactos?rev=44170&view=rev Log: Import new ext3fsd from vendor branch
Modified: vendor/ext2fsd/Ext3Fsd/ext3/MAKEFILE (contents, props changed) vendor/ext2fsd/Ext3Fsd/ext3/Sources (contents, props changed) vendor/ext2fsd/Ext3Fsd/sys/MAKEFILE (contents, props changed) vendor/ext2fsd/Ext3Fsd/sys/Sources (contents, props changed)
Modified: vendor/ext2fsd/Ext3Fsd/ext3/MAKEFILE URL: http://svn.reactos.org/svn/reactos/vendor/ext2fsd/Ext3Fsd/ext3/MAKEFILE?rev=... ============================================================================== --- vendor/ext2fsd/Ext3Fsd/ext3/MAKEFILE [iso-8859-1] (original) +++ vendor/ext2fsd/Ext3Fsd/ext3/MAKEFILE [iso-8859-1] Sun Nov 15 11:15:24 2009 @@ -1,7 +1,7 @@ -# -# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source -# file to this component. This file merely indirects to the real make file -# that is shared by all the driver components of the Windows NT DDK -# - -!INCLUDE $(NTMAKEENV)\makefile.def +# +# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source +# file to this component. This file merely indirects to the real make file +# that is shared by all the driver components of the Windows NT DDK +# + +!INCLUDE $(NTMAKEENV)\makefile.def
Propchange: vendor/ext2fsd/Ext3Fsd/ext3/MAKEFILE ------------------------------------------------------------------------------ svn:eol-style = native
Modified: vendor/ext2fsd/Ext3Fsd/ext3/Sources URL: http://svn.reactos.org/svn/reactos/vendor/ext2fsd/Ext3Fsd/ext3/Sources?rev=4... ============================================================================== --- vendor/ext2fsd/Ext3Fsd/ext3/Sources [iso-8859-1] (original) +++ vendor/ext2fsd/Ext3Fsd/ext3/Sources [iso-8859-1] Sun Nov 15 11:15:24 2009 @@ -1,24 +1,24 @@ -# -# Sources for Ext2 file system driver for windows -# mattwu@163.com / http://ext2fsd.sf.net -# - -# Name and type of the output file: -MAJORCOMP=ext2fsd -MINORCOMP=ext3 - -TARGETNAME=ext3 -TARGETTYPE=LIBRARY -TARGETPATH=..$(DDK_TARGET_OS)$(DDKBUILDENV)\ - -# Creates a file used by Visual Studio to navigate the source code. -BROWSER_INFO=TRUE -RCNOFONTMAP=TRUE - -C_DEFINES = $(C_DEFINES) /D__KERNEL__ -DRIVERTYPE=FS - -INCLUDES=.;..;..\include;$(DRIVER_INC_PATH); - -# The source code: -SOURCES= generic.c recover.c +# +# Sources for Ext2 file system driver for windows +# mattwu@163.com / http://ext2fsd.sf.net +# + +# Name and type of the output file: +MAJORCOMP=ext2fsd +MINORCOMP=ext3 + +TARGETNAME=ext3 +TARGETTYPE=LIBRARY +TARGETPATH=..$(DDK_TARGET_OS)$(DDKBUILDENV)\ + +# Creates a file used by Visual Studio to navigate the source code. +BROWSER_INFO=TRUE +RCNOFONTMAP=TRUE + +C_DEFINES = $(C_DEFINES) /D__KERNEL__ +DRIVERTYPE=FS + +INCLUDES=.;..;..\include;$(DRIVER_INC_PATH); + +# The source code: +SOURCES= generic.c recover.c
Propchange: vendor/ext2fsd/Ext3Fsd/ext3/Sources ------------------------------------------------------------------------------ svn:eol-style = native
Modified: vendor/ext2fsd/Ext3Fsd/sys/MAKEFILE URL: http://svn.reactos.org/svn/reactos/vendor/ext2fsd/Ext3Fsd/sys/MAKEFILE?rev=4... ============================================================================== --- vendor/ext2fsd/Ext3Fsd/sys/MAKEFILE [iso-8859-1] (original) +++ vendor/ext2fsd/Ext3Fsd/sys/MAKEFILE [iso-8859-1] Sun Nov 15 11:15:24 2009 @@ -1,7 +1,7 @@ -# -# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source -# file to this component. This file merely indirects to the real make file -# that is shared by all the driver components of the Windows NT DDK -# - -!INCLUDE $(NTMAKEENV)\makefile.def +# +# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source +# file to this component. This file merely indirects to the real make file +# that is shared by all the driver components of the Windows NT DDK +# + +!INCLUDE $(NTMAKEENV)\makefile.def
Propchange: vendor/ext2fsd/Ext3Fsd/sys/MAKEFILE ------------------------------------------------------------------------------ svn:eol-style = native
Modified: vendor/ext2fsd/Ext3Fsd/sys/Sources URL: http://svn.reactos.org/svn/reactos/vendor/ext2fsd/Ext3Fsd/sys/Sources?rev=44... ============================================================================== --- vendor/ext2fsd/Ext3Fsd/sys/Sources [iso-8859-1] (original) +++ vendor/ext2fsd/Ext3Fsd/sys/Sources [iso-8859-1] Sun Nov 15 11:15:24 2009 @@ -1,49 +1,49 @@ -# -# Sources for Ext2 file system driver for windows -# mattwu@163.com / http://ext2fsd.sf.net -# - -# Name and type of the output file: -TARGETNAME=ext2fsd -TARGETTYPE=DRIVER -TARGETPATH=..$(DDK_TARGET_OS)$(DDKBUILDENV) - -DRIVERTYPE=FS - -# Creates a file used by Visual Studio to navigate the source code. -BROWSER_INFO=TRUE -RCNOFONTMAP=TRUE - -C_DEFINES = $(C_DEFINES) /D__KERNEL__ -INCLUDES=..\include; -TARGETLIBS= $(TARGETPATH)*\nlssup.lib \ - $(TARGETPATH)*\jbd.lib \ - $(TARGETPATH)*\ext3.lib - -# The source code: -SOURCES= ..\Ext3fsd.rc \ - ..\fastio.c \ - ..\memory.c \ - ..\close.c \ - ..\dirctl.c \ - ..\except.c \ - ..\read.c \ - ..\misc.c \ - ..\devctl.c \ - ..\volinfo.c \ - ..\lock.c \ - ..\cleanup.c \ - ..\block.c \ - ..\cmcb.c \ - ..\fileinfo.c \ - ..\dispatch.c \ - ..\init.c \ - ..\debug.c \ - ..\create.c \ - ..\fsctl.c \ - ..\pnp.c \ - ..\write.c \ - ..\flush.c \ - ..\shutdown.c \ - ..\nls.c \ - ..\linux.c +# +# Sources for Ext2 file system driver for windows +# mattwu@163.com / http://ext2fsd.sf.net +# + +# Name and type of the output file: +TARGETNAME=ext2fsd +TARGETTYPE=DRIVER +TARGETPATH=..$(DDK_TARGET_OS)$(DDKBUILDENV) + +DRIVERTYPE=FS + +# Creates a file used by Visual Studio to navigate the source code. +BROWSER_INFO=TRUE +RCNOFONTMAP=TRUE + +C_DEFINES = $(C_DEFINES) /D__KERNEL__ +INCLUDES=..\include; +TARGETLIBS= $(TARGETPATH)*\nlssup.lib \ + $(TARGETPATH)*\jbd.lib \ + $(TARGETPATH)*\ext3.lib + +# The source code: +SOURCES= ..\Ext3fsd.rc \ + ..\fastio.c \ + ..\memory.c \ + ..\close.c \ + ..\dirctl.c \ + ..\except.c \ + ..\read.c \ + ..\misc.c \ + ..\devctl.c \ + ..\volinfo.c \ + ..\lock.c \ + ..\cleanup.c \ + ..\block.c \ + ..\cmcb.c \ + ..\fileinfo.c \ + ..\dispatch.c \ + ..\init.c \ + ..\debug.c \ + ..\create.c \ + ..\fsctl.c \ + ..\pnp.c \ + ..\write.c \ + ..\flush.c \ + ..\shutdown.c \ + ..\nls.c \ + ..\linux.c
Propchange: vendor/ext2fsd/Ext3Fsd/sys/Sources ------------------------------------------------------------------------------ svn:eol-style = native