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

29 lines
617 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 "sceLiveArea.h"
2015-06-21 01:04:01 +02:00
s32 sceLiveAreaResourceReplaceAll(vm::cptr<char> dirpath)
2015-01-30 00:58:53 +01:00
{
2015-07-01 19:09:26 +02:00
throw EXCEPTION("");
2015-01-30 00:58:53 +01:00
}
s32 sceLiveAreaResourceGetStatus()
{
2015-07-01 19:09:26 +02:00
throw EXCEPTION("");
2015-01-30 00:58:53 +01:00
}
#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;
2015-06-21 01:04:01 +02:00
sceLiveArea.on_error = nullptr;
2015-01-30 00:58:53 +01:00
REG_FUNC(0xA4B506F9, sceLiveAreaResourceReplaceAll);
REG_FUNC(0x54A395FB, sceLiveAreaResourceGetStatus);
});