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

28 lines
508 B
C++
Raw Normal View History

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