2020-12-05 13:08:24 +01:00
|
|
|
#include "stdafx.h"
|
2019-03-25 20:32:03 +01:00
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
|
|
|
|
LOG_CHANNEL(libad_core);
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code sceAdOpenContext()
|
2019-04-10 19:34:44 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code sceAdFlushReports()
|
2019-04-10 19:34:44 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code sceAdGetAssetInfo()
|
2019-03-25 20:32:03 +01:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code sceAdCloseContext()
|
2019-04-05 20:14:01 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code sceAdGetSpaceInfo()
|
2019-03-25 20:32:03 +01:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code sceAdGetConnectionInfo()
|
2019-04-05 20:14:01 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code sceAdConnectContext()
|
2019-04-10 19:34:44 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-25 20:32:03 +01:00
|
|
|
DECLARE(ppu_module_manager::libad_core)("libad_core", []()
|
2025-04-05 21:50:45 +02:00
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
});
|