mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
26 lines
577 B
C++
26 lines
577 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/PSP2/ARMv7Module.h"
|
|
|
|
#include "sceLiveArea.h"
|
|
|
|
logs::channel sceLiveArea("sceLiveArea");
|
|
|
|
s32 sceLiveAreaResourceReplaceAll(vm::cptr<char> dirpath)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceLiveAreaResourceGetStatus()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
#define REG_FUNC(nid, name) REG_FNID(SceLiveArea, nid, name)
|
|
|
|
DECLARE(arm_module_manager::SceLiveArea)("SceLiveArea", []()
|
|
{
|
|
REG_FUNC(0xA4B506F9, sceLiveAreaResourceReplaceAll);
|
|
REG_FUNC(0x54A395FB, sceLiveAreaResourceGetStatus);
|
|
});
|