Add ufatx.dll, to be able to create FATX (Xbox file system) partitions

svn path=/trunk/; revision=24339
This commit is contained in:
Hervé Poussineau 2006-10-01 10:11:46 +00:00
parent 72a9a3af12
commit 5895844509
5 changed files with 22 additions and 0 deletions

View file

@ -737,6 +737,7 @@ HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones\Tonga Standard Tim
; 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"

View file

@ -0,0 +1,3 @@
LIBRARY UFATX.DLL
EXPORTS
FormatEx=VfatxFormat@24

View file

@ -0,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>

View file

@ -0,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>

View file

@ -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>