mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
split rpcs3 and hle libraries
merge rpcs3 utilities
This commit is contained in:
parent
b33e2662b6
commit
62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions
50
ps3fw/libad_async.cpp
Normal file
50
ps3fw/libad_async.cpp
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(libad_async);
|
||||
|
||||
error_code sceAdAsyncOpenContext()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(libad_async);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sceAdAsyncConnectContext()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(libad_async);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sceAdAsyncSpaceOpen()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(libad_async);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sceAdAsyncFlushReports()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(libad_async);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sceAdAsyncSpaceClose()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(libad_async);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sceAdAsyncCloseContext()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(libad_async);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::libad_async)("libad_async", []()
|
||||
{
|
||||
REG_FUNC(libad_async, sceAdAsyncOpenContext);
|
||||
REG_FUNC(libad_async, sceAdAsyncConnectContext);
|
||||
REG_FUNC(libad_async, sceAdAsyncSpaceOpen);
|
||||
REG_FUNC(libad_async, sceAdAsyncFlushReports);
|
||||
REG_FUNC(libad_async, sceAdAsyncSpaceClose);
|
||||
REG_FUNC(libad_async, sceAdAsyncCloseContext);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue