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

35 lines
821 B
C++
Raw Normal View History

#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/ARMv7/PSVFuncList.h"
2015-06-21 01:04:01 +02:00
#include "sceRazorCapture.h"
void sceRazorCaptureSetTrigger(u32 frameIndex, vm::cptr<char> captureFilename)
2015-01-30 11:48:12 +01:00
{
2015-07-01 19:09:26 +02:00
throw EXCEPTION("");
2015-01-30 11:48:12 +01:00
}
void sceRazorCaptureSetTriggerNextFrame(vm::cptr<char> captureFilename)
2015-01-30 11:48:12 +01:00
{
2015-07-01 19:09:26 +02:00
throw EXCEPTION("");
2015-01-30 11:48:12 +01:00
}
2015-07-26 02:53:26 +02:00
b8 sceRazorCaptureIsInProgress()
2015-01-30 11:48:12 +01:00
{
2015-07-01 19:09:26 +02:00
throw EXCEPTION("");
2015-01-30 11:48:12 +01:00
}
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceRazorCapture, #name, name)
psv_log_base sceRazorCapture("SceRazorCapture", []()
{
sceRazorCapture.on_load = nullptr;
sceRazorCapture.on_unload = nullptr;
sceRazorCapture.on_stop = nullptr;
2015-06-21 01:04:01 +02:00
sceRazorCapture.on_error = nullptr;
2015-01-30 11:48:12 +01:00
REG_FUNC(0x911E0AA0, sceRazorCaptureIsInProgress);
REG_FUNC(0xE916B538, sceRazorCaptureSetTrigger);
REG_FUNC(0x3D4B7E68, sceRazorCaptureSetTriggerNextFrame);
});