2014-06-02 19:27:24 +02:00
|
|
|
#if 0
|
2014-07-12 09:46:14 +02:00
|
|
|
#include "stdafx.h"
|
2013-09-28 04:36:57 +02:00
|
|
|
#include "Emu/SysCalls/SysCalls.h"
|
|
|
|
|
#include "Emu/SysCalls/SC_FUNC.h"
|
|
|
|
|
|
|
|
|
|
void cellBgdl_init();
|
|
|
|
|
Module cellBgdl(0x003f, cellBgdl_init);
|
|
|
|
|
|
|
|
|
|
// Return Codes
|
|
|
|
|
enum
|
|
|
|
|
{
|
2014-04-04 15:25:38 +02:00
|
|
|
CELL_BGDL_UTIL_RET_OK = 0x00000000,
|
|
|
|
|
CELL_BGDL_UTIL_ERROR_BUSY = 0x8002ce01,
|
|
|
|
|
CELL_BGDL_UTIL_ERROR_INTERNAL = 0x8002ce02,
|
|
|
|
|
CELL_BGDL_UTIL_ERROR_PARAM = 0x8002ce03,
|
|
|
|
|
CELL_BGDL_UTIL_ERROR_ACCESS_ERROR = 0x8002ce04,
|
|
|
|
|
CELL_BGDL_UTIL_ERROR_INITIALIZE = 0x8002ce05,
|
2013-09-28 04:36:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int cellBGDLGetInfo()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellBgdl);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellBGDLGetInfo2()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellBgdl);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellBGDLSetMode()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellBgdl);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cellBGDLGetMode()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellBgdl);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void cellBgdl_init()
|
|
|
|
|
{
|
|
|
|
|
cellBgdl.AddFunc(0x4e9bb95b, cellBGDLGetInfo);
|
|
|
|
|
cellBgdl.AddFunc(0x2ab0d183, cellBGDLGetInfo2);
|
|
|
|
|
cellBgdl.AddFunc(0x7e134a90, cellBGDLSetMode);
|
|
|
|
|
cellBgdl.AddFunc(0x74e57bdf, cellBGDLGetMode);
|
2014-06-02 19:27:24 +02:00
|
|
|
}
|
|
|
|
|
#endif
|