mirror of
https://github.com/wiiu-env/wudd.git
synced 2024-11-06 02:25:06 +01:00
23 lines
409 B
C
23 lines
409 B
C
#pragma once
|
|
|
|
#include <coreinit/filesystem_fsa.h>
|
|
#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 FSAClientHandle gFSAClientHandle;
|
|
|
|
extern BOOL gRunFromHBL;
|
|
extern BOOL gBlockHomeButton;
|
|
extern uint32_t gBlockHomeButtonCooldown;
|
|
|
|
|
|
enum eDumpTarget {
|
|
TARGET_SD,
|
|
TARGET_NTFS
|
|
}; |