cellStorage.cpp, cellVideo(Export|Upload) modules

This commit is contained in:
Nekotekina 2015-07-31 02:11:43 +03:00
parent 137a38b3c6
commit eb5974322f
7 changed files with 107 additions and 2 deletions

View file

@ -0,0 +1,28 @@
#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);
}