mirror of
https://github.com/wiiu-env/wudd.git
synced 2024-11-06 02:25:06 +01:00
05aea5756b
- Display name/type of the partition - Block home menu when launching via HBL - Use libmocha instead of libiosuhax, which should result in a small performance boost - Improve logging - Improve memory management - Add option to abort dumps - Slightly improve .wux handling
21 lines
377 B
C
21 lines
377 B
C
#pragma once
|
|
|
|
#include <ntfs.h>
|
|
#include <wut.h>
|
|
|
|
#define SECTOR_SIZE 0x8000
|
|
#define READ_SECTOR_SIZE SECTOR_SIZE
|
|
|
|
extern ntfs_md *ntfs_mounts;
|
|
extern int ntfs_mount_count;
|
|
|
|
extern "C" FSClient *__wut_devoptab_fs_client;
|
|
|
|
extern BOOL gRunFromHBL;
|
|
extern BOOL gBlockHomeButton;
|
|
extern uint32_t gBlockHomeButtonCooldown;
|
|
|
|
enum eDumpTarget {
|
|
TARGET_SD,
|
|
TARGET_NTFS
|
|
}; |