mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
Some functions added
This commit is contained in:
parent
35898a6cdf
commit
cd6f95c90d
16 changed files with 1589 additions and 166 deletions
|
@ -4,6 +4,21 @@
|
|||
|
||||
extern psv_log_base sceRazorCapture;
|
||||
|
||||
void sceRazorCaptureSetTrigger(u32 frameIndex, vm::psv::ptr<const char> captureFilename)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
void sceRazorCaptureSetTriggerNextFrame(vm::psv::ptr<const char> captureFilename)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
bool sceRazorCaptureIsInProgress()
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceRazorCapture, #name, name)
|
||||
|
||||
psv_log_base sceRazorCapture("SceRazorCapture", []()
|
||||
|
@ -12,7 +27,7 @@ psv_log_base sceRazorCapture("SceRazorCapture", []()
|
|||
sceRazorCapture.on_unload = nullptr;
|
||||
sceRazorCapture.on_stop = nullptr;
|
||||
|
||||
//REG_FUNC(0x911E0AA0, sceRazorCaptureIsInProgress);
|
||||
//REG_FUNC(0xE916B538, sceRazorCaptureSetTrigger);
|
||||
//REG_FUNC(0x3D4B7E68, sceRazorCaptureSetTriggerNextFrame);
|
||||
REG_FUNC(0x911E0AA0, sceRazorCaptureIsInProgress);
|
||||
REG_FUNC(0xE916B538, sceRazorCaptureSetTrigger);
|
||||
REG_FUNC(0x3D4B7E68, sceRazorCaptureSetTriggerNextFrame);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue