mirror of
https://github.com/wiiu-env/libiosuhax.git
synced 2024-11-24 01:59:16 +01:00
41a318cac5
Thanks to @koolkdev for figuring out the FSStat flags and structs. Thanks to WUT for the error codes.
112 lines
4.1 KiB
C
112 lines
4.1 KiB
C
/***************************************************************************
|
|
* Copyright (C) 2016
|
|
* by Dimok
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty. In no event will the authors be held liable for any
|
|
* damages arising from the use of this software.
|
|
*
|
|
* Permission is granted to anyone to use this software for any
|
|
* purpose, including commercial applications, and to alter it and
|
|
* redistribute it freely, subject to the following restrictions:
|
|
*
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
* must not claim that you wrote the original software. If you use
|
|
* this software in a product, an acknowledgment in the product
|
|
* documentation would be appreciated but is not required.
|
|
*
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
* must not be misrepresented as being the original software.
|
|
*
|
|
* 3. This notice may not be removed or altered from any source
|
|
* distribution.
|
|
***************************************************************************/
|
|
#pragma once
|
|
|
|
#include <coreinit/filesystem.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Deprecated: Use FS_STAT_DIRECTORY
|
|
#ifndef DIR_ENTRY_IS_DIRECTORY
|
|
#define DIR_ENTRY_IS_DIRECTORY FS_STAT_FILE
|
|
#endif
|
|
|
|
#define FSA_MOUNTFLAGS_BINDMOUNT (1 << 0)
|
|
#define FSA_MOUNTFLAGS_GLOBAL (1 << 1)
|
|
|
|
int IOSUHAX_Open(const char *dev); // if dev == NULL the default path /dev/iosuhax will be used
|
|
int IOSUHAX_Close(void);
|
|
|
|
int IOSUHAX_memwrite(uint32_t address, const uint8_t *buffer, uint32_t size); // IOSU external input
|
|
int IOSUHAX_memread(uint32_t address, uint8_t *out_buffer, uint32_t size); // IOSU external output
|
|
int IOSUHAX_memcpy(uint32_t dst, uint32_t src, uint32_t size); // IOSU internal memcpy only
|
|
|
|
int IOSUHAX_kern_write32(uint32_t address, uint32_t value);
|
|
|
|
int IOSUHAX_kern_read32(uint32_t address, uint32_t *out_buffer, uint32_t count);
|
|
|
|
int IOSUHAX_read_otp(uint8_t *out_buffer, uint32_t size);
|
|
|
|
int IOSUHAX_read_seeprom(uint8_t *out_buffer, uint32_t offset, uint32_t size);
|
|
|
|
int IOSUHAX_ODM_GetDiscKey(uint8_t *discKey);
|
|
|
|
int IOSUHAX_SVC(uint32_t svc_id, uint32_t *args, uint32_t arg_cnt);
|
|
|
|
int IOSUHAX_FSA_Open();
|
|
|
|
int IOSUHAX_FSA_Close(int fsaFd);
|
|
|
|
int IOSUHAX_FSA_Mount(int fsaFd, const char *device_path, const char *volume_path, uint32_t flags, const char *arg_string, int arg_string_len);
|
|
|
|
int IOSUHAX_FSA_Unmount(int fsaFd, const char *path, uint32_t flags);
|
|
|
|
int IOSUHAX_FSA_FlushVolume(int fsaFd, const char *volume_path);
|
|
|
|
int IOSUHAX_FSA_GetDeviceInfo(int fsaFd, const char *device_path, int type, uint32_t *out_data);
|
|
|
|
int IOSUHAX_FSA_MakeDir(int fsaFd, const char *path, uint32_t flags);
|
|
|
|
int IOSUHAX_FSA_OpenDir(int fsaFd, const char *path, int *outHandle);
|
|
|
|
int IOSUHAX_FSA_ReadDir(int fsaFd, int handle, FSDirectoryEntry *out_data);
|
|
|
|
int IOSUHAX_FSA_RewindDir(int fsaFd, int dirHandle);
|
|
|
|
int IOSUHAX_FSA_CloseDir(int fsaFd, int handle);
|
|
|
|
int IOSUHAX_FSA_ChangeDir(int fsaFd, const char *path);
|
|
|
|
int IOSUHAX_FSA_OpenFile(int fsaFd, const char *path, const char *mode, int *outHandle);
|
|
|
|
int IOSUHAX_FSA_ReadFile(int fsaFd, void *data, uint32_t size, uint32_t cnt, int fileHandle, uint32_t flags);
|
|
|
|
int IOSUHAX_FSA_WriteFile(int fsaFd, const void *data, uint32_t size, uint32_t cnt, int fileHandle, uint32_t flags);
|
|
|
|
int IOSUHAX_FSA_StatFile(int fsaFd, int fileHandle, FSStat *out_data);
|
|
|
|
int IOSUHAX_FSA_CloseFile(int fsaFd, int fileHandle);
|
|
|
|
int IOSUHAX_FSA_SetFilePos(int fsaFd, int fileHandle, uint32_t position);
|
|
|
|
int IOSUHAX_FSA_GetStat(int fsaFd, const char *path, FSStat *out_data);
|
|
|
|
int IOSUHAX_FSA_Remove(int fsaFd, const char *path);
|
|
|
|
int IOSUHAX_FSA_ChangeMode(int fsaFd, const char *path, int mode);
|
|
|
|
int IOSUHAX_FSA_RawOpen(int fsaFd, const char *device_path, int *outHandle);
|
|
|
|
int IOSUHAX_FSA_RawRead(int fsaFd, void *data, uint32_t block_size, uint32_t block_cnt, uint64_t sector_offset, int device_handle);
|
|
|
|
int IOSUHAX_FSA_RawWrite(int fsaFd, const void *data, uint32_t block_size, uint32_t block_cnt, uint64_t sector_offset, int device_handle);
|
|
|
|
int IOSUHAX_FSA_RawClose(int fsaFd, int device_handle);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |