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,46 @@
#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "Emu/SysCalls/Modules.h"
extern Module cellVideoExport;
s32 cellVideoExportProgress()
{
throw EXCEPTION("");
}
s32 cellVideoExportInitialize2()
{
throw EXCEPTION("");
}
s32 cellVideoExportInitialize()
{
throw EXCEPTION("");
}
s32 cellVideoExportFromFileWithCopy()
{
throw EXCEPTION("");
}
s32 cellVideoExportFromFile()
{
throw EXCEPTION("");
}
s32 cellVideoExportFinalize()
{
throw EXCEPTION("");
}
Module cellVideoExport("cellVideoExport", []()
{
REG_FUNC(cellVideoExport, cellVideoExportProgress);
REG_FUNC(cellVideoExport, cellVideoExportInitialize2);
REG_FUNC(cellVideoExport, cellVideoExportInitialize);
REG_FUNC(cellVideoExport, cellVideoExportFromFileWithCopy);
REG_FUNC(cellVideoExport, cellVideoExportFromFile);
REG_FUNC(cellVideoExport, cellVideoExportFinalize);
});