cellSysutil crap split, cleanup, functions added

This commit is contained in:
Nekotekina 2015-08-01 19:14:49 +03:00
parent 0b1e45b6b5
commit 8fcaac5f1d
24 changed files with 1356 additions and 820 deletions

View file

@ -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);