2019-03-25 20:32:03 +01:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
|
|
|
|
LOG_CHANNEL(libad_async);
|
|
|
|
|
|
2019-04-10 19:34:44 +02:00
|
|
|
s32 sceAdAsyncOpenContext()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_async);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 sceAdAsyncConnectContext()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_async);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-25 20:32:03 +01:00
|
|
|
s32 sceAdAsyncSpaceOpen()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_async);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-10 19:34:44 +02:00
|
|
|
s32 sceAdAsyncFlushReports()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_async);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-25 20:32:03 +01:00
|
|
|
s32 sceAdAsyncSpaceClose()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_async);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-05 20:14:01 +02:00
|
|
|
s32 sceAdAsyncCloseContext()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(libad_async);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-25 20:32:03 +01:00
|
|
|
DECLARE(ppu_module_manager::libad_async)("libad_async", []()
|
|
|
|
|
{
|
2019-04-10 19:34:44 +02:00
|
|
|
REG_FUNC(libad_async, sceAdAsyncOpenContext);
|
|
|
|
|
REG_FUNC(libad_async, sceAdAsyncConnectContext);
|
2019-03-25 20:32:03 +01:00
|
|
|
REG_FUNC(libad_async, sceAdAsyncSpaceOpen);
|
2019-04-10 19:34:44 +02:00
|
|
|
REG_FUNC(libad_async, sceAdAsyncFlushReports);
|
2019-03-25 20:32:03 +01:00
|
|
|
REG_FUNC(libad_async, sceAdAsyncSpaceClose);
|
2019-04-05 20:14:01 +02:00
|
|
|
REG_FUNC(libad_async, sceAdAsyncCloseContext);
|
2019-03-25 20:32:03 +01:00
|
|
|
});
|