mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
PSP2
This commit is contained in:
parent
5c52521a0a
commit
38c444cfa1
133 changed files with 767 additions and 478 deletions
31
rpcs3/Emu/PSP2/Modules/sceRazorCapture.cpp
Normal file
31
rpcs3/Emu/PSP2/Modules/sceRazorCapture.cpp
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/PSP2/ARMv7Module.h"
|
||||
|
||||
#include "sceRazorCapture.h"
|
||||
|
||||
logs::channel sceRazorCapture("sceRazorCapture", logs::level::notice);
|
||||
|
||||
void sceRazorCaptureSetTrigger(u32 frameIndex, vm::cptr<char> captureFilename)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
void sceRazorCaptureSetTriggerNextFrame(vm::cptr<char> captureFilename)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
b8 sceRazorCaptureIsInProgress()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceRazorCapture, nid, name)
|
||||
|
||||
DECLARE(arm_module_manager::SceRazorCapture)("SceRazorCapture", []()
|
||||
{
|
||||
REG_FUNC(0x911E0AA0, sceRazorCaptureIsInProgress);
|
||||
REG_FUNC(0xE916B538, sceRazorCaptureSetTrigger);
|
||||
REG_FUNC(0x3D4B7E68, sceRazorCaptureSetTriggerNextFrame);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue