rpcsx/rpcs3/Emu/PSP2/Modules/sceRazorCapture.cpp

32 lines
796 B
C++
Raw Normal View History

#include "stdafx.h"
#include "Emu/System.h"
2016-05-13 13:17:26 +03:00
#include "Emu/PSP2/ARMv7Module.h"
2015-06-21 02:04:01 +03:00
#include "sceRazorCapture.h"
2017-05-13 21:30:37 +03:00
logs::channel sceRazorCapture("sceRazorCapture");
2016-02-02 00:53:16 +03:00
void sceRazorCaptureSetTrigger(u32 frameIndex, vm::cptr<char> captureFilename)
2015-01-30 13:48:12 +03:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 13:48:12 +03:00
}
void sceRazorCaptureSetTriggerNextFrame(vm::cptr<char> captureFilename)
2015-01-30 13:48:12 +03:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 13:48:12 +03:00
}
2015-07-26 03:53:26 +03:00
b8 sceRazorCaptureIsInProgress()
2015-01-30 13:48:12 +03:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 13:48:12 +03:00
}
2016-02-02 00:53:16 +03:00
#define REG_FUNC(nid, name) REG_FNID(SceRazorCapture, nid, name)
2016-02-02 00:53:16 +03:00
DECLARE(arm_module_manager::SceRazorCapture)("SceRazorCapture", []()
{
2015-01-30 13:48:12 +03:00
REG_FUNC(0x911E0AA0, sceRazorCaptureIsInProgress);
REG_FUNC(0xE916B538, sceRazorCaptureSetTrigger);
REG_FUNC(0x3D4B7E68, sceRazorCaptureSetTriggerNextFrame);
});