2019-03-25 20:32:03 +01:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
|
|
|
|
LOG_CHANNEL(libad_core);
|
|
|
|
|
|
2019-04-10 19:34:44 +02:00
|
|
|
s32 sceAdOpenContext()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 sceAdFlushReports()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-25 20:32:03 +01:00
|
|
|
s32 sceAdGetAssetInfo()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-05 20:14:01 +02:00
|
|
|
s32 sceAdCloseContext()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-25 20:32:03 +01:00
|
|
|
s32 sceAdGetSpaceInfo()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-05 20:14:01 +02:00
|
|
|
s32 sceAdGetConnectionInfo()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-10 19:34:44 +02:00
|
|
|
s32 sceAdConnectContext()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_core);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-25 20:32:03 +01:00
|
|
|
DECLARE(ppu_module_manager::libad_core)("libad_core", []()
|
|
|
|
|
{
|
2019-04-10 19:34:44 +02:00
|
|
|
REG_FUNC(libad_core, sceAdOpenContext);
|
|
|
|
|
REG_FUNC(libad_core, sceAdFlushReports);
|
2019-03-25 20:32:03 +01:00
|
|
|
REG_FUNC(libad_core, sceAdGetAssetInfo);
|
2019-04-05 20:14:01 +02:00
|
|
|
REG_FUNC(libad_core, sceAdCloseContext);
|
2019-03-25 20:32:03 +01:00
|
|
|
REG_FUNC(libad_core, sceAdGetSpaceInfo);
|
2019-04-05 20:14:01 +02:00
|
|
|
REG_FUNC(libad_core, sceAdGetConnectionInfo);
|
2019-04-10 19:34:44 +02:00
|
|
|
REG_FUNC(libad_core, sceAdConnectContext);
|
2019-03-25 20:32:03 +01:00
|
|
|
});
|