mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
PSV modules refactoring
This commit is contained in:
parent
8229c0ed3d
commit
bc9481db1b
129 changed files with 5000 additions and 4588 deletions
|
|
@ -2,21 +2,14 @@
|
|||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceAppMgr;
|
||||
#include "sceAppMgr.h"
|
||||
|
||||
struct SceAppMgrEvent
|
||||
{
|
||||
s32 event;
|
||||
s32 appId;
|
||||
char param[56];
|
||||
};
|
||||
|
||||
s32 sceAppMgrReceiveEventNum(vm::psv::ptr<s32> eventNum)
|
||||
s32 sceAppMgrReceiveEventNum(vm::ptr<s32> eventNum)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAppMgrReceiveEvent(vm::psv::ptr<SceAppMgrEvent> appEvent)
|
||||
s32 sceAppMgrReceiveEvent(vm::ptr<SceAppMgrEvent> appEvent)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -39,6 +32,7 @@ psv_log_base sceAppMgr("SceAppMgr", []()
|
|||
sceAppMgr.on_load = nullptr;
|
||||
sceAppMgr.on_unload = nullptr;
|
||||
sceAppMgr.on_stop = nullptr;
|
||||
sceAppMgr.on_error = nullptr;
|
||||
|
||||
REG_FUNC(0x47E5DD7D, sceAppMgrReceiveEventNum);
|
||||
REG_FUNC(0xCFAD5A3A, sceAppMgrReceiveEvent);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue