rpcsx/rpcs3/Emu/Cell/Modules/cellStorage.cpp
2016-04-15 19:22:29 +03:00

28 lines
439 B
C++

#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
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);
}