2015-01-29 16:48:05 +01:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/System.h"
|
|
|
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
|
|
|
|
|
|
extern psv_log_base sceLiveArea;
|
|
|
|
|
|
2015-01-30 00:58:53 +01:00
|
|
|
s32 sceLiveAreaResourceReplaceAll(vm::psv::ptr<const char> dirpath)
|
|
|
|
|
{
|
|
|
|
|
throw __FUNCTION__;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 sceLiveAreaResourceGetStatus()
|
|
|
|
|
{
|
|
|
|
|
throw __FUNCTION__;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-29 16:48:05 +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-01-30 00:58:53 +01:00
|
|
|
REG_FUNC(0xA4B506F9, sceLiveAreaResourceReplaceAll);
|
|
|
|
|
REG_FUNC(0x54A395FB, sceLiveAreaResourceGetStatus);
|
2015-01-29 16:48:05 +01:00
|
|
|
});
|