mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
29 lines
617 B
C++
29 lines
617 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
#include "sceLiveArea.h"
|
|
|
|
s32 sceLiveAreaResourceReplaceAll(vm::cptr<char> dirpath)
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
s32 sceLiveAreaResourceGetStatus()
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceLiveArea, #name, name)
|
|
|
|
psv_log_base sceLiveArea("SceLiveArea", []()
|
|
{
|
|
sceLiveArea.on_load = nullptr;
|
|
sceLiveArea.on_unload = nullptr;
|
|
sceLiveArea.on_stop = nullptr;
|
|
sceLiveArea.on_error = nullptr;
|
|
|
|
REG_FUNC(0xA4B506F9, sceLiveAreaResourceReplaceAll);
|
|
REG_FUNC(0x54A395FB, sceLiveAreaResourceGetStatus);
|
|
});
|