mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-08 07:55:35 +00:00
hle: Add cellNetAoi module
This commit is contained in:
parent
7ea04d5d76
commit
32ae7e466c
5 changed files with 78 additions and 0 deletions
72
rpcs3/Emu/Cell/Modules/cellNetAoi.cpp
Normal file
72
rpcs3/Emu/Cell/Modules/cellNetAoi.cpp
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(cellNetAoi);
|
||||
|
||||
s32 cellNetAoiDeletePeer()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellNetAoiInit()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellNetAoiGetPspTitleId()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellNetAoiTerm()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellNetAoiStop()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellNetAoiGetRemotePeerInfo()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellNetAoiStart()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellNetAoiGetLocalInfo()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellNetAoiAddPeer()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellNetAoi)("cellNetAoi", []()
|
||||
{
|
||||
REG_FUNC(cellNetAoi, cellNetAoiDeletePeer);
|
||||
REG_FUNC(cellNetAoi, cellNetAoiInit);
|
||||
REG_FUNC(cellNetAoi, cellNetAoiGetPspTitleId);
|
||||
REG_FUNC(cellNetAoi, cellNetAoiTerm);
|
||||
REG_FUNC(cellNetAoi, cellNetAoiStop);
|
||||
REG_FUNC(cellNetAoi, cellNetAoiGetRemotePeerInfo);
|
||||
REG_FUNC(cellNetAoi, cellNetAoiStart);
|
||||
REG_FUNC(cellNetAoi, cellNetAoiGetLocalInfo);
|
||||
REG_FUNC(cellNetAoi, cellNetAoiAddPeer);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue