mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 07:25:26 +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
57
ps3fw/libad_core.cpp
Normal file
57
ps3fw/libad_core.cpp
Normal 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);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue