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