mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
73 lines
1.5 KiB
C++
73 lines
1.5 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
#include "sysPrxForUser.h"
|
|
|
|
LOG_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);
|
|
}
|