2015-07-31 02:11:43 +03:00
|
|
|
#include "stdafx.h"
|
2016-03-21 22:43:03 +03:00
|
|
|
#include "Emu/Cell/PPUModule.h"
|
2015-07-31 02:11:43 +03:00
|
|
|
|
2016-05-13 16:55:34 +03:00
|
|
|
extern logs::channel cellSysutil;
|
2015-07-31 02:11:43 +03:00
|
|
|
|
|
|
|
|
s32 cellStorageDataImportMove()
|
|
|
|
|
{
|
2016-08-08 19:01:06 +03:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2015-07-31 02:11:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellStorageDataImport()
|
|
|
|
|
{
|
2016-08-08 19:01:06 +03:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2015-07-31 02:11:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellStorageDataExport()
|
|
|
|
|
{
|
2016-08-08 19:01:06 +03:00
|
|
|
fmt::throw_exception("Unimplemented" HERE);
|
2015-07-31 02:11:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cellSysutil_Storage_init()
|
|
|
|
|
{
|
|
|
|
|
REG_FUNC(cellSysutil, cellStorageDataImportMove);
|
|
|
|
|
REG_FUNC(cellSysutil, cellStorageDataImport);
|
|
|
|
|
REG_FUNC(cellSysutil, cellStorageDataExport);
|
|
|
|
|
}
|