mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 08:30:21 +00:00
[UFFS]
Add the FFS DLL CORE-11040 svn path=/trunk/; revision=71424
This commit is contained in:
parent
126b96aee1
commit
c8fc495780
5 changed files with 44 additions and 0 deletions
|
@ -212,6 +212,7 @@ add_subdirectory(ubtrfs)
|
|||
add_subdirectory(uext2)
|
||||
add_subdirectory(ufat)
|
||||
add_subdirectory(ufatx)
|
||||
add_subdirectory(uffs)
|
||||
add_subdirectory(untfs)
|
||||
add_subdirectory(updspapi)
|
||||
add_subdirectory(ureiserfs)
|
||||
|
|
13
reactos/dll/win32/uffs/CMakeLists.txt
Normal file
13
reactos/dll/win32/uffs/CMakeLists.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
spec2def(uffs.dll uffs.spec)
|
||||
|
||||
list(APPEND SOURCE
|
||||
uffs.c
|
||||
uffs.rc
|
||||
${CMAKE_CURRENT_BINARY_DIR}/uffs.def)
|
||||
|
||||
add_library(uffs SHARED ${SOURCE})
|
||||
set_module_type(uffs nativedll)
|
||||
target_link_libraries(uffs ffslib)
|
||||
add_importlibs(uffs ntdll)
|
||||
add_cd_file(TARGET uffs DESTINATION reactos/system32 FOR all)
|
23
reactos/dll/win32/uffs/uffs.c
Normal file
23
reactos/dll/win32/uffs/uffs.c
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: FFS File System Management
|
||||
* FILE: dll/win32/uffs/uffs.c
|
||||
* PURPOSE: uffs DLL initialisation
|
||||
*
|
||||
* PROGRAMMERS: Pierre Schweitzer
|
||||
*/
|
||||
|
||||
#include <windef.h>
|
||||
|
||||
INT WINAPI
|
||||
DllMain(
|
||||
IN HINSTANCE hinstDLL,
|
||||
IN DWORD dwReason,
|
||||
IN LPVOID lpvReserved)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(hinstDLL);
|
||||
UNREFERENCED_PARAMETER(dwReason);
|
||||
UNREFERENCED_PARAMETER(lpvReserved);
|
||||
|
||||
return TRUE;
|
||||
}
|
5
reactos/dll/win32/uffs/uffs.rc
Normal file
5
reactos/dll/win32/uffs/uffs.rc
Normal file
|
@ -0,0 +1,5 @@
|
|||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "FFS File System Management"
|
||||
#define REACTOS_STR_INTERNAL_NAME "uffs"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "uffs.dll"
|
||||
#include <reactos/version.rc>
|
2
reactos/dll/win32/uffs/uffs.spec
Normal file
2
reactos/dll/win32/uffs/uffs.spec
Normal file
|
@ -0,0 +1,2 @@
|
|||
@ stdcall ChkdskEx(ptr long long long long ptr) FfsChkdsk
|
||||
@ stdcall FormatEx(ptr long ptr long long ptr) FfsFormat
|
Loading…
Reference in a new issue