mirror of
https://github.com/reactos/reactos.git
synced 2025-05-08 19:27:00 +00:00
[UBTRFS]
Import the ubtrfs DLL from the BtrFS project. CORE-12617 svn path=/trunk/; revision=73513
This commit is contained in:
parent
5ebe380166
commit
568b75b342
6 changed files with 1576 additions and 26 deletions
|
@ -8,6 +8,5 @@ list(APPEND SOURCE
|
||||||
|
|
||||||
add_library(ubtrfs SHARED ${SOURCE})
|
add_library(ubtrfs SHARED ${SOURCE})
|
||||||
set_module_type(ubtrfs nativedll)
|
set_module_type(ubtrfs nativedll)
|
||||||
target_link_libraries(ubtrfs btrfslib)
|
|
||||||
add_importlibs(ubtrfs ntdll)
|
add_importlibs(ubtrfs ntdll)
|
||||||
add_cd_file(TARGET ubtrfs DESTINATION reactos/system32 FOR all)
|
add_cd_file(TARGET ubtrfs DESTINATION reactos/system32 FOR all)
|
||||||
|
|
14
reactos/dll/win32/ubtrfs/resource.h
Executable file
14
reactos/dll/win32/ubtrfs/resource.h
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
//{{NO_DEPENDENCIES}}
|
||||||
|
// Microsoft Visual C++ generated include file.
|
||||||
|
// Used by ubtrfs.rc
|
||||||
|
|
||||||
|
// Next default values for new objects
|
||||||
|
//
|
||||||
|
#ifdef APSTUDIO_INVOKED
|
||||||
|
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||||
|
#define _APS_NEXT_RESOURCE_VALUE 101
|
||||||
|
#define _APS_NEXT_COMMAND_VALUE 40001
|
||||||
|
#define _APS_NEXT_CONTROL_VALUE 1001
|
||||||
|
#define _APS_NEXT_SYMED_VALUE 101
|
||||||
|
#endif
|
||||||
|
#endif
|
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,101 @@
|
||||||
#define REACTOS_VERSION_DLL
|
// Microsoft Visual C++ generated resource script.
|
||||||
#define REACTOS_STR_FILE_DESCRIPTION "BTRFS File System Management"
|
//
|
||||||
#define REACTOS_STR_INTERNAL_NAME "ubtrfs"
|
#include "resource.h"
|
||||||
#define REACTOS_STR_ORIGINAL_FILENAME "ubtrfs.dll"
|
|
||||||
#include <reactos/version.rc>
|
#define APSTUDIO_READONLY_SYMBOLS
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Generated from the TEXTINCLUDE 2 resource.
|
||||||
|
//
|
||||||
|
#include "afxres.h"
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
#undef APSTUDIO_READONLY_SYMBOLS
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
// English (U.K.) resources
|
||||||
|
|
||||||
|
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENG)
|
||||||
|
#ifdef _WIN32
|
||||||
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_UK
|
||||||
|
#pragma code_page(1252)
|
||||||
|
#endif //_WIN32
|
||||||
|
|
||||||
|
#ifdef APSTUDIO_INVOKED
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// TEXTINCLUDE
|
||||||
|
//
|
||||||
|
|
||||||
|
1 TEXTINCLUDE
|
||||||
|
BEGIN
|
||||||
|
"resource.h\0"
|
||||||
|
END
|
||||||
|
|
||||||
|
2 TEXTINCLUDE
|
||||||
|
BEGIN
|
||||||
|
"#include ""afxres.h""\r\n"
|
||||||
|
"\0"
|
||||||
|
END
|
||||||
|
|
||||||
|
3 TEXTINCLUDE
|
||||||
|
BEGIN
|
||||||
|
"\r\n"
|
||||||
|
"\0"
|
||||||
|
END
|
||||||
|
|
||||||
|
#endif // APSTUDIO_INVOKED
|
||||||
|
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Version
|
||||||
|
//
|
||||||
|
|
||||||
|
VS_VERSION_INFO VERSIONINFO
|
||||||
|
FILEVERSION 1,0,0,1
|
||||||
|
PRODUCTVERSION 1,0,0,1
|
||||||
|
FILEFLAGSMASK 0x17L
|
||||||
|
#ifdef _DEBUG
|
||||||
|
FILEFLAGS 0x1L
|
||||||
|
#else
|
||||||
|
FILEFLAGS 0x0L
|
||||||
|
#endif
|
||||||
|
FILEOS 0x4L
|
||||||
|
FILETYPE 0x2L
|
||||||
|
FILESUBTYPE 0x0L
|
||||||
|
BEGIN
|
||||||
|
BLOCK "StringFileInfo"
|
||||||
|
BEGIN
|
||||||
|
BLOCK "080904b0"
|
||||||
|
BEGIN
|
||||||
|
VALUE "FileDescription", "Btrfs utility DLL"
|
||||||
|
VALUE "FileVersion", "0.8"
|
||||||
|
VALUE "InternalName", "ubtrfs"
|
||||||
|
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016"
|
||||||
|
VALUE "OriginalFilename", "ubtrfs.dll"
|
||||||
|
VALUE "ProductName", "WinBtrfs"
|
||||||
|
VALUE "ProductVersion", "0.8"
|
||||||
|
END
|
||||||
|
END
|
||||||
|
BLOCK "VarFileInfo"
|
||||||
|
BEGIN
|
||||||
|
VALUE "Translation", 0x809, 1200
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
||||||
|
#endif // English (U.K.) resources
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef APSTUDIO_INVOKED
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Generated from the TEXTINCLUDE 3 resource.
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
#endif // not APSTUDIO_INVOKED
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
@ stdcall ChkdskEx(ptr long long long long ptr) BtrfsChkdsk
|
@ stdcall ChkdskEx(ptr long long long long ptr)
|
||||||
@ stdcall FormatEx(ptr long ptr long long ptr) BtrfsFormat
|
@ stdcall FormatEx(ptr long ptr long long ptr)
|
||||||
|
|
|
@ -5,6 +5,7 @@ The following FSD are shared with: https://github.com/maharmstone/btrfs.
|
||||||
|
|
||||||
reactos/drivers/filesystems/btrfs # Synced to 0.8
|
reactos/drivers/filesystems/btrfs # Synced to 0.8
|
||||||
reactos/dll/shellext/shellbtrfs # Synced to 0.7
|
reactos/dll/shellext/shellbtrfs # Synced to 0.7
|
||||||
|
reactos/dll/win32/ubtrfs # Synced to 0.8
|
||||||
|
|
||||||
The following FSD are shared with: http://www.ext2fsd.com/
|
The following FSD are shared with: http://www.ext2fsd.com/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue