rpcs3/rpcs3/Emu/Cell/Modules/cellStorage.cpp
Nekotekina a7e808b35b EXCEPTION macro removed
fmt::throw_exception<> implemented
::narrow improved
Minor fixes
2016-08-08 19:19:32 +03:00

27 lines
508 B
C++

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