mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
split rpcs3 and hle libraries
merge rpcs3 utilities
This commit is contained in:
parent
b33e2662b6
commit
62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions
71
ps3fw/cellNetAoi.cpp
Normal file
71
ps3fw/cellNetAoi.cpp
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(cellNetAoi);
|
||||
|
||||
error_code cellNetAoiDeletePeer()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellNetAoiInit()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellNetAoiGetPspTitleId()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellNetAoiTerm()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellNetAoiStop()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellNetAoiGetRemotePeerInfo()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellNetAoiStart()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellNetAoiGetLocalInfo()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellNetAoi);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code 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