mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 07:25:26 +00:00
Stub sys_rsxaudio_ functions
This commit is contained in:
parent
45dc7fbac8
commit
4d294e7a69
6 changed files with 82 additions and 1 deletions
74
rpcs3/Emu/Cell/Modules/sys_rsxaudio_.cpp
Normal file
74
rpcs3/Emu/Cell/Modules/sys_rsxaudio_.cpp
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
#include "sysPrxForUser.h"
|
||||
|
||||
extern logs::channel sysPrxForUser;
|
||||
|
||||
s32 sys_rsxaudio_close_connection()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_rsxaudio_create_connection()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_rsxaudio_finalize()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_rsxaudio_import_shared_memory()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_rsxaudio_initialize()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_rsxaudio_prepare_process()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_rsxaudio_start_process()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_rsxaudio_stop_process()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_rsxaudio_unimport_shared_memory()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
void sysPrxForUser_sys_rsxaudio_init()
|
||||
{
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_close_connection);
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_create_connection);
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_finalize);
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_import_shared_memory);
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_initialize);
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_prepare_process);
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_start_process);
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_stop_process);
|
||||
REG_FUNC(sysPrxForUser, sys_rsxaudio_unimport_shared_memory);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue