split rpcs3 and hle libraries

merge rpcs3 utilities
This commit is contained in:
DH 2025-04-08 19:46:57 +03:00
parent b33e2662b6
commit 62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions

71
ps3fw/cellNetAoi.cpp Normal file
View 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);
});