mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-10-30 08:02:11 +00:00
30 lines
851 B
C++
30 lines
851 B
C++
#include "../portultra/multilibultra.hpp"
|
|
#include "recomp.h"
|
|
|
|
extern "C" void osCreateViManager_recomp(uint8_t* restrict rdram, recomp_context* restrict ctx) {
|
|
;
|
|
}
|
|
|
|
extern "C" void osViBlack_recomp(uint8_t* restrict rdram, recomp_context* restrict ctx) {
|
|
;
|
|
}
|
|
|
|
extern "C" void osViSetSpecialFeatures_recomp(uint8_t* restrict rdram, recomp_context* restrict ctx) {
|
|
;
|
|
}
|
|
|
|
extern "C" void osViGetCurrentFramebuffer_recomp(uint8_t* restrict rdram, recomp_context* restrict ctx) {
|
|
;
|
|
}
|
|
|
|
extern "C" void osViGetNextFramebuffer_recomp(uint8_t* restrict rdram, recomp_context* restrict ctx) {
|
|
;
|
|
}
|
|
|
|
extern "C" void osViSwapBuffer_recomp(uint8_t* restrict rdram, recomp_context* restrict ctx) {
|
|
osViSwapBuffer(rdram, (int32_t)ctx->r4);
|
|
}
|
|
|
|
extern "C" void osViSetMode_recomp(uint8_t* restrict rdram, recomp_context* restrict ctx) {
|
|
;
|
|
}
|