mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
ARMv7: stubs for other modules, loader improved
This commit is contained in:
parent
1fa301b719
commit
62c8f2ac34
66 changed files with 2616 additions and 59 deletions
18
rpcs3/Emu/ARMv7/Modules/sceRazorCapture.cpp
Normal file
18
rpcs3/Emu/ARMv7/Modules/sceRazorCapture.cpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceRazorCapture;
|
||||
|
||||
#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;
|
||||
|
||||
//REG_FUNC(0x911E0AA0, sceRazorCaptureIsInProgress);
|
||||
//REG_FUNC(0xE916B538, sceRazorCaptureSetTrigger);
|
||||
//REG_FUNC(0x3D4B7E68, sceRazorCaptureSetTriggerNextFrame);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue