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

57
ps3fw/libad_core.cpp Normal file
View file

@ -0,0 +1,57 @@
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(libad_core);
error_code sceAdOpenContext()
{
UNIMPLEMENTED_FUNC(libad_core);
return CELL_OK;
}
error_code sceAdFlushReports()
{
UNIMPLEMENTED_FUNC(libad_core);
return CELL_OK;
}
error_code sceAdGetAssetInfo()
{
UNIMPLEMENTED_FUNC(libad_core);
return CELL_OK;
}
error_code sceAdCloseContext()
{
UNIMPLEMENTED_FUNC(libad_core);
return CELL_OK;
}
error_code sceAdGetSpaceInfo()
{
UNIMPLEMENTED_FUNC(libad_core);
return CELL_OK;
}
error_code sceAdGetConnectionInfo()
{
UNIMPLEMENTED_FUNC(libad_core);
return CELL_OK;
}
error_code sceAdConnectContext()
{
UNIMPLEMENTED_FUNC(libad_core);
return CELL_OK;
}
DECLARE(ppu_module_manager::libad_core)("libad_core", []()
{
REG_FUNC(libad_core, sceAdOpenContext);
REG_FUNC(libad_core, sceAdFlushReports);
REG_FUNC(libad_core, sceAdGetAssetInfo);
REG_FUNC(libad_core, sceAdCloseContext);
REG_FUNC(libad_core, sceAdGetSpaceInfo);
REG_FUNC(libad_core, sceAdGetConnectionInfo);
REG_FUNC(libad_core, sceAdConnectContext);
});