#include "stdafx.h" #include "Emu/System.h" #include "Emu/PSP2/ARMv7Module.h" #include "sceFios.h" logs::channel sceFios("sceFios"); s32 sceFiosInitialize(vm::cptr pParameters) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosTerminate() { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosIsInitialized(vm::ptr pOutParameters) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosUpdateParameters(vm::cptr pParameters) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosSetGlobalDefaultOpAttr(vm::cptr pAttr) { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosGetGlobalDefaultOpAttr(vm::ptr pOutAttr) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosSetThreadDefaultOpAttr(vm::cptr pAttr) { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosGetThreadDefaultOpAttr(vm::ptr pOutAttr) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosGetDefaultOpAttr(vm::ptr pOutAttr) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosSuspend() { fmt::throw_exception("Unimplemented" HERE); } u32 sceFiosGetSuspendCount() { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosIsSuspended() { fmt::throw_exception("Unimplemented" HERE); } void sceFiosResume() { fmt::throw_exception("Unimplemented" HERE); } void sceFiosShutdownAndCancelOps() { fmt::throw_exception("Unimplemented" HERE); } void sceFiosCancelAllOps() { fmt::throw_exception("Unimplemented" HERE); } void sceFiosCloseAllFiles() { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosIsIdle() { fmt::throw_exception("Unimplemented" HERE); } u32 sceFiosGetAllFHs(vm::ptr pOutArray, u32 arraySize) { fmt::throw_exception("Unimplemented" HERE); } u32 sceFiosGetAllDHs(vm::ptr pOutArray, u32 arraySize) { fmt::throw_exception("Unimplemented" HERE); } u32 sceFiosGetAllOps(vm::ptr pOutArray, u32 arraySize) { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosIsValidHandle(s32 h) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosPathcmp(vm::cptr pA, vm::cptr pB) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosPathncmp(vm::cptr pA, vm::cptr pB, u32 n) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosPrintf(vm::cptr pFormat, arm_va_args_t va_args) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosVprintf(vm::cptr pFormat) // va_list { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFileExists(vm::cptr pAttr, vm::cptr pPath, vm::ptr pOutExists) { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosFileExistsSync(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFileGetSize(vm::cptr pAttr, vm::cptr pPath, vm::ptr pOutSize) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFileGetSizeSync(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFileDelete(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFileDeleteSync(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDirectoryExists(vm::cptr pAttr, vm::cptr pPath, vm::ptr pOutExists) { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosDirectoryExistsSync(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDirectoryCreate(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDirectoryCreateSync(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDirectoryDelete(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDirectoryDeleteSync(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosExists(vm::cptr pAttr, vm::cptr pPath, vm::ptr pOutExists) { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosExistsSync(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosStat(vm::cptr pAttr, vm::cptr pPath, vm::ptr pOutStatus) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosStatSync(vm::cptr pAttr, vm::cptr pPath, vm::ptr pOutStatus) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDelete(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDeleteSync(vm::cptr pAttr, vm::cptr pPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosResolve(vm::cptr pAttr, vm::cptr pInTuple, vm::ptr pOutTuple) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosResolveSync(vm::cptr pAttr, vm::cptr pInTuple, vm::ptr pOutTuple) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosRename(vm::cptr pAttr, vm::cptr pOldPath, vm::cptr pNewPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosRenameSync(vm::cptr pAttr, vm::cptr pOldPath, vm::cptr pNewPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFileRead(vm::cptr pAttr, vm::cptr pPath, vm::ptr pBuf, s64 length, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFileReadSync(vm::cptr pAttr, vm::cptr pPath, vm::ptr pBuf, s64 length, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFileWrite(vm::cptr pAttr, vm::cptr pPath, vm::cptr pBuf, s64 length, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFileWriteSync(vm::cptr pAttr, vm::cptr pPath, vm::cptr pBuf, s64 length, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFileTruncate(vm::cptr pAttr, vm::cptr pPath, s64 length) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFileTruncateSync(vm::cptr pAttr, vm::cptr pPath, s64 length) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHOpen(vm::cptr pAttr, vm::ptr pOutFH, vm::cptr pPath, vm::cptr pOpenParams) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHOpenSync(vm::cptr pAttr, vm::ptr pOutFH, vm::cptr pPath, vm::cptr pOpenParams) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHStat(vm::cptr pAttr, s32 fh, vm::ptr pOutStatus) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHStatSync(vm::cptr pAttr, s32 fh, vm::ptr pOutStatus) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHTruncate(vm::cptr pAttr, s32 fh, s64 length) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHTruncateSync(vm::cptr pAttr, s32 fh, s64 length) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHSync(vm::cptr pAttr, s32 fh) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHSyncSync(vm::cptr pAttr, s32 fh) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHRead(vm::cptr pAttr, s32 fh, vm::ptr pBuf, s64 length) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHReadSync(vm::cptr pAttr, s32 fh, vm::ptr pBuf, s64 length) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHWrite(vm::cptr pAttr, s32 fh, vm::cptr pBuf, s64 length) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHWriteSync(vm::cptr pAttr, s32 fh, vm::cptr pBuf, s64 length) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHReadv(vm::cptr pAttr, s32 fh, vm::cptr iov, s32 iovcnt) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHReadvSync(vm::cptr pAttr, s32 fh, vm::cptr iov, s32 iovcnt) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHWritev(vm::cptr pAttr, s32 fh, vm::cptr iov, s32 iovcnt) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHWritevSync(vm::cptr pAttr, s32 fh, vm::cptr iov, s32 iovcnt) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHPread(vm::cptr pAttr, s32 fh, vm::ptr pBuf, s64 length, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHPreadSync(vm::cptr pAttr, s32 fh, vm::ptr pBuf, s64 length, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHPwrite(vm::cptr pAttr, s32 fh, vm::cptr pBuf, s64 length, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHPwriteSync(vm::cptr pAttr, s32 fh, vm::cptr pBuf, s64 length, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHPreadv(vm::cptr pAttr, s32 fh, vm::cptr iov, s32 iovcnt, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHPreadvSync(vm::cptr pAttr, s32 fh, vm::cptr iov, s32 iovcnt, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHPwritev(vm::cptr pAttr, s32 fh, vm::cptr iov, s32 iovcnt, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHPwritevSync(vm::cptr pAttr, s32 fh, vm::cptr iov, s32 iovcnt, s64 offset) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHClose(vm::cptr pAttr, s32 fh) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosFHCloseSync(vm::cptr pAttr, s32 fh) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHSeek(s32 fh, s64 offset, SceFiosWhence whence) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHTell(s32 fh) { fmt::throw_exception("Unimplemented" HERE); } vm::cptr sceFiosFHGetPath(s32 fh) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosFHGetSize(s32 fh) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosFHGetOpenParams(s32 fh) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDHOpen(vm::cptr pAttr, vm::ptr pOutDH, vm::cptr pPath, SceFiosBuffer buf) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDHOpenSync(vm::cptr pAttr, vm::ptr pOutDH, vm::cptr pPath, SceFiosBuffer buf) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDHRead(vm::cptr pAttr, s32 dh, vm::ptr pOutEntry) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDHReadSync(vm::cptr pAttr, s32 dh, vm::ptr pOutEntry) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDHClose(vm::cptr pAttr, s32 dh) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosDHCloseSync(vm::cptr pAttr, s32 dh) { fmt::throw_exception("Unimplemented" HERE); } vm::cptr sceFiosDHGetPath(s32 dh) { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosOpIsDone(s32 op) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOpWait(s32 op) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOpWaitUntil(s32 op, s64 deadline) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosOpDelete(s32 op) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOpSyncWait(s32 op) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosOpSyncWaitForIO(s32 op) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOpGetError(s32 op) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosOpCancel(s32 op) { fmt::throw_exception("Unimplemented" HERE); } b8 sceFiosOpIsCancelled(s32 op) { fmt::throw_exception("Unimplemented" HERE); } vm::cptr sceFiosOpGetAttr(s32 op) { fmt::throw_exception("Unimplemented" HERE); } vm::cptr sceFiosOpGetPath(s32 op) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosOpGetBuffer(s32 op) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosOpGetOffset(s32 op) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosOpGetRequestCount(s32 op) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosOpGetActualCount(s32 op) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosOpReschedule(s32 op, s64 newDeadline) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosTimeGetCurrent() { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosTimeIntervalToNanoseconds(s64 interval) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosTimeIntervalFromNanoseconds(s64 ns) { fmt::throw_exception("Unimplemented" HERE); } u64 sceFiosDateGetCurrent() { fmt::throw_exception("Unimplemented" HERE); } u64 sceFiosDateFromComponents(vm::cptr pComponents) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosDateToComponents(u64 date, vm::ptr pOutComponents) { fmt::throw_exception("Unimplemented" HERE); } u64 sceFiosDateFromSceDateTime(vm::cptr pSceDateTime) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosDateToSceDateTime(u64 date, vm::ptr pSceDateTime) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOverlayAdd(vm::cptr pOverlay, vm::ptr pOutID) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOverlayRemove(s32 id) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOverlayGetInfo(s32 id, vm::ptr pOutOverlay) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOverlayModify(s32 id, vm::cptr pNewValue) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOverlayGetList(vm::ptr pOutIDs, u32 maxIDs, vm::ptr pActualIDs) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosOverlayResolveSync(s32 resolveFlag, vm::cptr pInPath, vm::ptr pOutPath, u32 maxPath) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosArchiveGetMountBufferSize(vm::cptr pAttr, vm::cptr pArchivePath, vm::cptr pOpenParams) { fmt::throw_exception("Unimplemented" HERE); } s64 sceFiosArchiveGetMountBufferSizeSync(vm::cptr pAttr, vm::cptr pArchivePath, vm::cptr pOpenParams) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosArchiveMount(vm::cptr pAttr, vm::ptr pOutFH, vm::cptr pArchivePath, vm::cptr pMountPoint, SceFiosBuffer mountBuffer, vm::cptr pOpenParams) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosArchiveMountSync(vm::cptr pAttr, vm::ptr pOutFH, vm::cptr pArchivePath, vm::cptr pMountPoint, SceFiosBuffer mountBuffer, vm::cptr pOpenParams) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosArchiveUnmount(vm::cptr pAttr, s32 fh) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosArchiveUnmountSync(vm::cptr pAttr, s32 fh) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosDebugDumpError(s32 err, vm::ptr pBuffer, u32 bufferSize) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosDebugDumpOp(s32 op, vm::ptr pBuffer, u32 bufferSize) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosDebugDumpFH(s32 fh, vm::ptr pBuffer, u32 bufferSize) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosDebugDumpDH(s32 dh, vm::ptr pBuffer, u32 bufferSize) { fmt::throw_exception("Unimplemented" HERE); } vm::ptr sceFiosDebugDumpDate(u64 date, vm::ptr pBuffer, u32 bufferSize) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosIOFilterAdd(s32 index, vm::ptr pFilterCallback, vm::ptr pFilterContext) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosIOFilterGetInfo(s32 index, vm::pptr pOutFilterCallback, vm::pptr pOutFilterContext) { fmt::throw_exception("Unimplemented" HERE); } s32 sceFiosIOFilterRemove(s32 index) { fmt::throw_exception("Unimplemented" HERE); } void sceFiosIOFilterPsarcDearchiver() { fmt::throw_exception("Unimplemented" HERE); } #define REG_FUNC(nid, name) REG_FNID(SceFios2, nid, name) DECLARE(arm_module_manager::SceFios)("SceFios2", []() { REG_FUNC(0x15857180, sceFiosArchiveGetMountBufferSize); REG_FUNC(0xDF3352FC, sceFiosArchiveGetMountBufferSizeSync); //REG_FUNC(0x92E76BBD, sceFiosArchiveMount); //REG_FUNC(0xC4822276, sceFiosArchiveMountSync); REG_FUNC(0xFE1E1D28, sceFiosArchiveUnmount); REG_FUNC(0xB26DC24D, sceFiosArchiveUnmountSync); REG_FUNC(0x1E920B1D, sceFiosCancelAllOps); REG_FUNC(0xF85C208B, sceFiosCloseAllFiles); REG_FUNC(0xF6CACFC7, sceFiosDHClose); REG_FUNC(0x1F3CC428, sceFiosDHCloseSync); REG_FUNC(0x2B406DEB, sceFiosDHGetPath); //REG_FUNC(0xEA9855BA, sceFiosDHOpen); //REG_FUNC(0x34BC3713, sceFiosDHOpenSync); REG_FUNC(0x72A0A851, sceFiosDHRead); REG_FUNC(0xB7E79CAD, sceFiosDHReadSync); REG_FUNC(0x280D284A, sceFiosDateFromComponents); REG_FUNC(0x5C593C1E, sceFiosDateGetCurrent); REG_FUNC(0x5CFF6EA0, sceFiosDateToComponents); REG_FUNC(0x44B9F8EB, sceFiosDebugDumpDH); REG_FUNC(0x159B1FA8, sceFiosDebugDumpDate); REG_FUNC(0x51E677DF, sceFiosDebugDumpError); REG_FUNC(0x5506ACAB, sceFiosDebugDumpFH); REG_FUNC(0xE438D4F0, sceFiosDebugDumpOp); REG_FUNC(0x764DFA7A, sceFiosDelete); REG_FUNC(0xAAC54B44, sceFiosDeleteSync); REG_FUNC(0x9198ED8B, sceFiosDirectoryCreate); REG_FUNC(0xE037B076, sceFiosDirectoryCreateSync); REG_FUNC(0xDA93677C, sceFiosDirectoryDelete); REG_FUNC(0xB9573146, sceFiosDirectoryDeleteSync); REG_FUNC(0x48D50D97, sceFiosDirectoryExists); REG_FUNC(0x726E01BE, sceFiosDirectoryExistsSync); REG_FUNC(0x6F12D8A5, sceFiosExists); REG_FUNC(0x125EFD34, sceFiosExistsSync); REG_FUNC(0xA88EDCA8, sceFiosFHClose); REG_FUNC(0x45182328, sceFiosFHCloseSync); REG_FUNC(0xC55DB73B, sceFiosFHGetOpenParams); REG_FUNC(0x37143AE3, sceFiosFHGetPath); REG_FUNC(0xC5C26581, sceFiosFHGetSize); REG_FUNC(0xBF699BD4, sceFiosFHOpen); REG_FUNC(0xC3E7C3DB, sceFiosFHOpenSync); REG_FUNC(0x6A51E688, sceFiosFHPread); REG_FUNC(0xE2805059, sceFiosFHPreadSync); REG_FUNC(0x7C4E0C42, sceFiosFHPreadv); REG_FUNC(0x4D42F95C, sceFiosFHPreadvSync); REG_FUNC(0xCF1FAA6F, sceFiosFHPwrite); REG_FUNC(0x1E962F57, sceFiosFHPwriteSync); REG_FUNC(0xBBC9AFD5, sceFiosFHPwritev); REG_FUNC(0x742ADDC4, sceFiosFHPwritevSync); REG_FUNC(0xB09AFBDF, sceFiosFHRead); REG_FUNC(0x76945919, sceFiosFHReadSync); REG_FUNC(0x7DB0AFAF, sceFiosFHReadv); REG_FUNC(0x1BC977FA, sceFiosFHReadvSync); REG_FUNC(0xA75F3C4A, sceFiosFHSeek); REG_FUNC(0xD97C4DF7, sceFiosFHStat); REG_FUNC(0xF8BEAC88, sceFiosFHStatSync); REG_FUNC(0xE485F35E, sceFiosFHSync); REG_FUNC(0xA909CCE3, sceFiosFHSyncSync); REG_FUNC(0xD7F33130, sceFiosFHTell); REG_FUNC(0x2B39453B, sceFiosFHTruncate); REG_FUNC(0xFEF940B7, sceFiosFHTruncateSync); REG_FUNC(0xE663138E, sceFiosFHWrite); REG_FUNC(0x984024E5, sceFiosFHWriteSync); REG_FUNC(0x988DD7FF, sceFiosFHWritev); REG_FUNC(0x267E6CE3, sceFiosFHWritevSync); REG_FUNC(0xB647278B, sceFiosFileDelete); REG_FUNC(0xB5302E30, sceFiosFileDeleteSync); REG_FUNC(0x8758E62F, sceFiosFileExists); REG_FUNC(0x233B070C, sceFiosFileExistsSync); REG_FUNC(0x79D9BB50, sceFiosFileGetSize); REG_FUNC(0x789215C3, sceFiosFileGetSizeSync); REG_FUNC(0x84080161, sceFiosFileRead); REG_FUNC(0x1C488B32, sceFiosFileReadSync); REG_FUNC(0xC5513E13, sceFiosFileTruncate); REG_FUNC(0x6E1252B8, sceFiosFileTruncateSync); REG_FUNC(0x42C278E5, sceFiosFileWrite); REG_FUNC(0x132B6DE6, sceFiosFileWriteSync); REG_FUNC(0x681184A2, sceFiosGetAllDHs); REG_FUNC(0x90AB9195, sceFiosGetAllFHs); REG_FUNC(0x8F62832C, sceFiosGetAllOps); REG_FUNC(0xC897F6A7, sceFiosGetDefaultOpAttr); REG_FUNC(0x30583FCB, sceFiosGetGlobalDefaultOpAttr); REG_FUNC(0x156EAFDC, sceFiosGetSuspendCount); REG_FUNC(0xD55B8555, sceFiosIOFilterAdd); REG_FUNC(0x7C9B14EB, sceFiosIOFilterGetInfo); REG_FUNC(0x057252F2, sceFiosIOFilterPsarcDearchiver); REG_FUNC(0x22E35018, sceFiosIOFilterRemove); REG_FUNC(0x774C2C05, sceFiosInitialize); REG_FUNC(0x29104BF3, sceFiosIsIdle); REG_FUNC(0xF4F54E09, sceFiosIsInitialized); REG_FUNC(0xD2466EA5, sceFiosIsSuspended); REG_FUNC(0xB309E327, sceFiosIsValidHandle); REG_FUNC(0x3904F205, sceFiosOpCancel); REG_FUNC(0xE4EA92FA, sceFiosOpDelete); REG_FUNC(0x218A43EE, sceFiosOpGetActualCount); REG_FUNC(0xABFEE706, sceFiosOpGetAttr); REG_FUNC(0x68C436E4, sceFiosOpGetBuffer); REG_FUNC(0xBF099E16, sceFiosOpGetError); REG_FUNC(0xF21213B9, sceFiosOpGetOffset); REG_FUNC(0x157515CB, sceFiosOpGetPath); REG_FUNC(0x9C1084C5, sceFiosOpGetRequestCount); REG_FUNC(0x0C81D80E, sceFiosOpIsCancelled); REG_FUNC(0x1B9A575E, sceFiosOpIsDone); REG_FUNC(0x968CADBD, sceFiosOpReschedule); REG_FUNC(0xE6A66C70, sceFiosOpSyncWait); REG_FUNC(0x202079F9, sceFiosOpSyncWaitForIO); REG_FUNC(0x2AC79DFC, sceFiosOpWait); REG_FUNC(0xCC823B47, sceFiosOpWaitUntil); REG_FUNC(0x27AE468B, sceFiosOverlayAdd); REG_FUNC(0xF4C6B72A, sceFiosOverlayGetInfo); REG_FUNC(0x1C0BCAD5, sceFiosOverlayGetList); REG_FUNC(0x30F56704, sceFiosOverlayModify); REG_FUNC(0xF3C84D0F, sceFiosOverlayRemove); REG_FUNC(0x8A243E74, sceFiosOverlayResolveSync); REG_FUNC(0x5E75937A, sceFiosPathcmp); REG_FUNC(0xCC21C849, sceFiosPathncmp); REG_FUNC(0xAF7FAADF, sceFiosPrintf); REG_FUNC(0x25E399E5, sceFiosRename); REG_FUNC(0x030306F4, sceFiosRenameSync); REG_FUNC(0xD0B19C9F, sceFiosResolve); REG_FUNC(0x7FF33797, sceFiosResolveSync); REG_FUNC(0xBF2D3CC1, sceFiosResume); REG_FUNC(0x4E2FD311, sceFiosSetGlobalDefaultOpAttr); REG_FUNC(0x5B8D48C4, sceFiosShutdownAndCancelOps); REG_FUNC(0xFF04AF72, sceFiosStat); REG_FUNC(0xACBAF3E0, sceFiosStatSync); REG_FUNC(0x510953DC, sceFiosSuspend); REG_FUNC(0x2904B539, sceFiosTerminate); REG_FUNC(0xE76C8EC3, sceFiosTimeGetCurrent); REG_FUNC(0x35A82737, sceFiosTimeIntervalFromNanoseconds); REG_FUNC(0x397BF626, sceFiosTimeIntervalToNanoseconds); REG_FUNC(0x1915052A, sceFiosUpdateParameters); REG_FUNC(0x5BA4BD6D, sceFiosVprintf); });