rpcsx/rpcs3/Emu/Cell/Modules/cellStorage.cpp
Nekotekina e2d82394f6 Cell
2016-05-23 16:22:23 +03:00

28 lines
439 B
C++

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