mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2026-07-14 07:41:21 -05:00
31 lines
842 B
C++
31 lines
842 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, ctx->r4);
|
|
}
|
|
|
|
extern "C" void osViSetMode_recomp(uint8_t* restrict rdram, recomp_context* restrict ctx) {
|
|
;
|
|
}
|