mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
41 lines
875 B
C++
41 lines
875 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
#include "sceScreenShot.h"
|
|
|
|
s32 sceScreenShotSetParam(vm::cptr<SceScreenShotParam> param)
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
s32 sceScreenShotSetOverlayImage(vm::cptr<char> filePath, s32 offsetX, s32 offsetY)
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
s32 sceScreenShotDisable()
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
s32 sceScreenShotEnable()
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
|
|
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceScreenShot, #name, name)
|
|
|
|
psv_log_base sceScreenShot("SceScreenShot", []()
|
|
{
|
|
sceScreenShot.on_load = nullptr;
|
|
sceScreenShot.on_unload = nullptr;
|
|
sceScreenShot.on_stop = nullptr;
|
|
sceScreenShot.on_error = nullptr;
|
|
|
|
REG_FUNC(0x05DB59C7, sceScreenShotSetParam);
|
|
REG_FUNC(0x7061665B, sceScreenShotSetOverlayImage);
|
|
REG_FUNC(0x50AE9FF9, sceScreenShotDisable);
|
|
REG_FUNC(0x76E674D1, sceScreenShotEnable);
|
|
});
|