mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
add a gazillion more error_code
This commit is contained in:
parent
a00ebacef3
commit
d854a39500
72 changed files with 2040 additions and 1349 deletions
|
|
@ -8,49 +8,49 @@ extern void cellKb_init();
|
|||
extern void cellMouse_init();
|
||||
|
||||
|
||||
s32 sys_config_start()
|
||||
error_code sys_config_start()
|
||||
{
|
||||
sys_io.todo("sys_config_start()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_config_stop()
|
||||
error_code sys_config_stop()
|
||||
{
|
||||
sys_io.todo("sys_config_stop()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_config_add_service_listener()
|
||||
error_code sys_config_add_service_listener()
|
||||
{
|
||||
sys_io.todo("sys_config_add_service_listener()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_config_remove_service_listener()
|
||||
error_code sys_config_remove_service_listener()
|
||||
{
|
||||
sys_io.todo("sys_config_remove_service_listener()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_config_register_io_error_handler()
|
||||
error_code sys_config_register_io_error_handler()
|
||||
{
|
||||
sys_io.todo("sys_config_register_io_error_handler()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_config_register_service()
|
||||
error_code sys_config_register_service()
|
||||
{
|
||||
sys_io.todo("sys_config_register_service()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_config_unregister_io_error_handler()
|
||||
error_code sys_config_unregister_io_error_handler()
|
||||
{
|
||||
sys_io.todo("sys_config_unregister_io_error_handler()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sys_config_unregister_service()
|
||||
error_code sys_config_unregister_service()
|
||||
{
|
||||
sys_io.todo("sys_config_unregister_service()");
|
||||
return CELL_OK;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue