rpcsx/rpcs3/Emu/SysCalls/Modules/cellStorage.cpp
Nekotekina 12f36cf31f Experimental class template Module<T>
Allocates ps3 memory for specific instance T
2015-09-22 13:28:31 +03:00

29 lines
467 B
C++

#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "Emu/SysCalls/Modules.h"
extern Module<> 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);
}