mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 20:47:21 +00:00
[REISERFS] Remove the ReiserFS driver
The upstream driver is not maintained and the file system itself
is in a semi-abandoned state.
Originally imported at e308102f4a
The driver is written by Mark W Piper, updated by Bo Brantén.
ReactOS porting made by Peter Hater and Pierre Schweitzer.
Follow updates at http://www.acc.umu.se/~bosse/
FS Recognizer code is left to keep the FS support as an
installable driver.
CORE-11005
This commit is contained in:
parent
99ba98468f
commit
2e2190df57
120 changed files with 3 additions and 83333 deletions
|
@ -4,6 +4,5 @@ add_subdirectory(cdfslib)
|
|||
add_subdirectory(ext2lib)
|
||||
add_subdirectory(ffslib)
|
||||
add_subdirectory(ntfslib)
|
||||
add_subdirectory(reiserfslib)
|
||||
add_subdirectory(vfatlib)
|
||||
add_subdirectory(vfatxlib)
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
|
||||
add_library(reiserfslib reiserfslib.c)
|
||||
add_dependencies(reiserfslib psdk)
|
|
@ -1,49 +0,0 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS ReiserFS library
|
||||
* FILE: lib/fslib/reiserfslib/reiserfslib.c
|
||||
* PURPOSE: ReiserFS lib
|
||||
* PROGRAMMERS: Pierre Schweitzer
|
||||
*/
|
||||
|
||||
#define NTOS_MODE_USER
|
||||
#include <ndk/umtypes.h>
|
||||
#include <fmifs/fmifs.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
ReiserfsFormat(
|
||||
IN PUNICODE_STRING DriveRoot,
|
||||
IN PFMIFSCALLBACK Callback,
|
||||
IN BOOLEAN QuickFormat,
|
||||
IN BOOLEAN BackwardCompatible,
|
||||
IN MEDIA_TYPE MediaType,
|
||||
IN PUNICODE_STRING Label,
|
||||
IN ULONG ClusterSize)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
ReiserfsChkdsk(
|
||||
IN PUNICODE_STRING DriveRoot,
|
||||
IN PFMIFSCALLBACK Callback,
|
||||
IN BOOLEAN FixErrors,
|
||||
IN BOOLEAN Verbose,
|
||||
IN BOOLEAN CheckOnlyIfDirty,
|
||||
IN BOOLEAN ScanDrive,
|
||||
IN PVOID pUnknown1,
|
||||
IN PVOID pUnknown2,
|
||||
IN PVOID pUnknown3,
|
||||
IN PVOID pUnknown4,
|
||||
IN PULONG ExitStatus)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
*ExitStatus = (ULONG)STATUS_SUCCESS;
|
||||
return TRUE;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue