mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-14 08:12:19 +00:00
31 lines
1 KiB
C++
31 lines
1 KiB
C++
#include "recomp.h"
|
|
#include "../portultra/ultra64.h"
|
|
#include "../portultra/multilibultra.hpp"
|
|
|
|
extern "C" void osPfsInitPak_recomp(uint8_t * restrict rdram, recomp_context* restrict ctx) {
|
|
ctx->r2 = 1; // PFS_ERR_NOPACK
|
|
}
|
|
|
|
extern "C" void osPfsFreeBlocks_recomp(uint8_t * restrict rdram, recomp_context * restrict ctx) {
|
|
ctx->r2 = 1; // PFS_ERR_NOPACK
|
|
}
|
|
|
|
extern "C" void osPfsAllocateFile_recomp(uint8_t * restrict rdram, recomp_context * restrict ctx) {
|
|
ctx->r2 = 1; // PFS_ERR_NOPACK
|
|
}
|
|
|
|
extern "C" void osPfsDeleteFile_recomp(uint8_t * restrict rdram, recomp_context * restrict ctx) {
|
|
ctx->r2 = 1; // PFS_ERR_NOPACK
|
|
}
|
|
|
|
extern "C" void osPfsFileState_recomp(uint8_t * restrict rdram, recomp_context * restrict ctx) {
|
|
ctx->r2 = 1; // PFS_ERR_NOPACK
|
|
}
|
|
|
|
extern "C" void osPfsFindFile_recomp(uint8_t * restrict rdram, recomp_context * restrict ctx) {
|
|
ctx->r2 = 1; // PFS_ERR_NOPACK
|
|
}
|
|
|
|
extern "C" void osPfsReadWriteFile_recomp(uint8_t * restrict rdram, recomp_context * restrict ctx) {
|
|
ctx->r2 = 1; // PFS_ERR_NOPACK
|
|
}
|