mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
23 lines
403 B
C++
23 lines
403 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "Emu/Cell/PPUModule.h"
|
||
|
|
|
||
|
|
LOG_CHANNEL(libad_async);
|
||
|
|
|
||
|
|
s32 sceAdAsyncSpaceOpen()
|
||
|
|
{
|
||
|
|
UNIMPLEMENTED_FUNC(libad_async);
|
||
|
|
return CELL_OK;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sceAdAsyncSpaceClose()
|
||
|
|
{
|
||
|
|
UNIMPLEMENTED_FUNC(libad_async);
|
||
|
|
return CELL_OK;
|
||
|
|
}
|
||
|
|
|
||
|
|
DECLARE(ppu_module_manager::libad_async)("libad_async", []()
|
||
|
|
{
|
||
|
|
REG_FUNC(libad_async, sceAdAsyncSpaceOpen);
|
||
|
|
REG_FUNC(libad_async, sceAdAsyncSpaceClose);
|
||
|
|
});
|