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

28 lines
439 B
C++
Raw Normal View History

#include "stdafx.h"
2016-03-21 20:43:03 +01:00
#include "Emu/Cell/PPUModule.h"
2016-03-21 20:43:03 +01:00
extern _log::channel cellSysutil;
s32 cellStorageDataImportMove()
{
throw EXCEPTION("");
}
s32 cellStorageDataImport()
{
throw EXCEPTION("");
}
s32 cellStorageDataExport()
{
throw EXCEPTION("");
}
void cellSysutil_Storage_init()
{
REG_FUNC(cellSysutil, cellStorageDataImportMove);
REG_FUNC(cellSysutil, cellStorageDataImport);
REG_FUNC(cellSysutil, cellStorageDataExport);
}