mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +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
71
ps3fw/sys_rsxaudio_.cpp
Normal file
71
ps3fw/sys_rsxaudio_.cpp
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(sysPrxForUser);
|
||||
|
||||
error_code sys_rsxaudio_close_connection()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_rsxaudio_create_connection()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_rsxaudio_finalize()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_rsxaudio_import_shared_memory()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_rsxaudio_initialize()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_rsxaudio_prepare_process()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_rsxaudio_start_process()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_rsxaudio_stop_process()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sysPrxForUser);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code 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