Author: hpoussin Date: Sun Oct 1 14:11:46 2006 New Revision: 24339
URL: http://svn.reactos.org/svn/reactos?rev=24339&view=rev Log: Add ufatx.dll, to be able to create FATX (Xbox file system) partitions
Added: trunk/reactos/dll/win32/ufatx/ trunk/reactos/dll/win32/ufatx/ufatx.def (with props) trunk/reactos/dll/win32/ufatx/ufatx.rbuild (with props) trunk/reactos/dll/win32/ufatx/ufatx.rc (with props) Modified: trunk/reactos/boot/bootdata/hivesft.inf trunk/reactos/dll/win32/win32.rbuild
Modified: trunk/reactos/boot/bootdata/hivesft.inf URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/hivesft.inf?r... ============================================================================== --- trunk/reactos/boot/bootdata/hivesft.inf (original) +++ trunk/reactos/boot/bootdata/hivesft.inf Sun Oct 1 14:11:46 2006 @@ -737,6 +737,7 @@ ; Available file systems HKLM,"SOFTWARE\ReactOS\ReactOS\CurrentVersion\IFS","FAT",0x00000000,"ufat.dll" HKLM,"SOFTWARE\ReactOS\ReactOS\CurrentVersion\IFS","FAT32",0x00000000,"ufat.dll" +HKLM,"SOFTWARE\ReactOS\ReactOS\CurrentVersion\IFS","FATX",0x00000000,"ufatx.dll"
HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon","ConsoleShell",0x00020000,"%SystemRoot%\system32\cmd.exe" HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon","Shell",0x00020000,"%SystemRoot%\explorer.exe"
Added: trunk/reactos/dll/win32/ufatx/ufatx.def URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/ufatx/ufatx.def?r... ============================================================================== --- trunk/reactos/dll/win32/ufatx/ufatx.def (added) +++ trunk/reactos/dll/win32/ufatx/ufatx.def Sun Oct 1 14:11:46 2006 @@ -1,0 +1,3 @@ +LIBRARY UFATX.DLL +EXPORTS +FormatEx=VfatxFormat@24
Propchange: trunk/reactos/dll/win32/ufatx/ufatx.def ------------------------------------------------------------------------------ svn:eol-style = native
Added: trunk/reactos/dll/win32/ufatx/ufatx.rbuild URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/ufatx/ufatx.rbuil... ============================================================================== --- trunk/reactos/dll/win32/ufatx/ufatx.rbuild (added) +++ trunk/reactos/dll/win32/ufatx/ufatx.rbuild Sun Oct 1 14:11:46 2006 @@ -1,0 +1,10 @@ +<module name="ufatx" type="win32dll" entrypoint="0" baseaddress="${BASEADDRESS_UFAT}" installbase="system32" installname="ufatx.dll"> + <importlibrary definition="ufatx.def" /> + <include base="ufatx">.</include> + <define name="_DISABLE_TIDENTS" /> + <define name="__USE_W32API" /> + <define name="_WIN32_WINNT">0x0600</define> + <library>vfatxlib</library> + <library>ntdll</library> + <file>ufatx.rc</file> +</module>
Propchange: trunk/reactos/dll/win32/ufatx/ufatx.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: trunk/reactos/dll/win32/ufatx/ufatx.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/ufatx/ufatx.rc?re... ============================================================================== --- trunk/reactos/dll/win32/ufatx/ufatx.rc (added) +++ trunk/reactos/dll/win32/ufatx/ufatx.rc Sun Oct 1 14:11:46 2006 @@ -1,0 +1,5 @@ +#define REACTOS_VERSION_DLL +#define REACTOS_STR_FILE_DESCRIPTION "FATX File System Management\0" +#define REACTOS_STR_INTERNAL_NAME "ufatx\0" +#define REACTOS_STR_ORIGINAL_FILENAME "ufatx.dll\0" +#include <reactos/version.rc>
Propchange: trunk/reactos/dll/win32/ufatx/ufatx.rc ------------------------------------------------------------------------------ svn:eol-style = native
Modified: trunk/reactos/dll/win32/win32.rbuild URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/win32.rbuild?rev=... ============================================================================== --- trunk/reactos/dll/win32/win32.rbuild (original) +++ trunk/reactos/dll/win32/win32.rbuild Sun Oct 1 14:11:46 2006 @@ -229,6 +229,9 @@ <directory name="ufat"> <xi:include href="ufat/ufat.rbuild" /> </directory> +<directory name="ufatx"> + <xi:include href="ufatx/ufatx.rbuild" /> +</directory> <directory name="urlmon"> <xi:include href="urlmon/urlmon.rbuild" /> </directory>