mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00: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);
|
|
}
|