split rpcs3 and hle libraries

merge rpcs3 utilities
This commit is contained in:
DH 2025-04-08 19:46:57 +03:00
parent b33e2662b6
commit 62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions

71
ps3fw/sys_rsxaudio_.cpp Normal file
View 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);
}