rpcsx/rpcs3/Emu/Cell/Modules/libad_async.cpp

23 lines
403 B
C++
Raw Normal View History

#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);
});