rpcsx/rpcs3/Emu/Cell/Modules/cellSysconf.cpp

31 lines
535 B
C++
Raw Normal View History

2015-07-31 01:53:52 +03:00
#include "stdafx.h"
2016-03-21 22:43:03 +03:00
#include "Emu/Cell/PPUModule.h"
2015-07-31 01:53:52 +03:00
2016-05-13 16:55:34 +03:00
logs::channel cellSysconf("cellSysconf", logs::level::notice);
2015-07-31 01:53:52 +03:00
s32 cellSysconfAbort()
{
throw EXCEPTION("");
}
s32 cellSysconfOpen()
{
throw EXCEPTION("");
}
2015-07-31 01:53:52 +03:00
s32 cellSysconfBtGetDeviceList()
{
throw EXCEPTION("");
}
void cellSysutil_Sysconf_init()
{
REG_FUNC(cellSysutil, cellSysconfAbort);
REG_FUNC(cellSysutil, cellSysconfOpen);
}
2016-03-21 22:43:03 +03:00
DECLARE(ppu_module_manager::cellSysconf)("cellSysconfExtUtility", []()
2015-07-31 01:53:52 +03:00
{
2016-03-21 22:43:03 +03:00
REG_FUNC(cellSysconfExtUtility, cellSysconfBtGetDeviceList);
2015-07-31 01:53:52 +03:00
});