mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
cellSysutil crap split, cleanup, functions added
This commit is contained in:
parent
0b1e45b6b5
commit
8fcaac5f1d
24 changed files with 1356 additions and 820 deletions
|
|
@ -4,11 +4,29 @@
|
|||
|
||||
extern Module cellSysconf;
|
||||
|
||||
s32 cellSysconfAbort()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellSysconfOpen()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellSysconfBtGetDeviceList()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
void cellSysutil_Sysconf_init()
|
||||
{
|
||||
extern Module cellSysutil;
|
||||
|
||||
REG_FUNC(cellSysutil, cellSysconfAbort);
|
||||
REG_FUNC(cellSysutil, cellSysconfOpen);
|
||||
}
|
||||
|
||||
Module cellSysconf("cellSysconf", []()
|
||||
{
|
||||
REG_FUNC(cellSysconf, cellSysconfBtGetDeviceList);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue