mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
27 lines
508 B
C++
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);
|
|
}
|