mirror of
https://github.com/wiiu-env/wudd.git
synced 2024-11-06 10:35:06 +01:00
1ba090a969
- Disable auto shutdown
17 lines
252 B
C++
17 lines
252 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <ntfs.h>
|
|
|
|
extern int32_t gFSAfd;
|
|
|
|
#define SECTOR_SIZE 0x8000
|
|
#define READ_SECTOR_SIZE SECTOR_SIZE
|
|
|
|
extern ntfs_md *ntfs_mounts;
|
|
extern int ntfs_mount_count;
|
|
|
|
enum eDumpTarget {
|
|
TARGET_SD,
|
|
TARGET_NTFS
|
|
}; |