2015-07-31 01:11:43 +02:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/Memory/Memory.h"
|
|
|
|
|
#include "Emu/SysCalls/Modules.h"
|
|
|
|
|
|
2015-09-08 15:53:28 +02:00
|
|
|
extern Module<> cellVideoExport;
|
2015-07-31 01:11:43 +02:00
|
|
|
|
|
|
|
|
s32 cellVideoExportProgress()
|
|
|
|
|
{
|
|
|
|
|
throw EXCEPTION("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportInitialize2()
|
|
|
|
|
{
|
|
|
|
|
throw EXCEPTION("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportInitialize()
|
|
|
|
|
{
|
|
|
|
|
throw EXCEPTION("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportFromFileWithCopy()
|
|
|
|
|
{
|
|
|
|
|
throw EXCEPTION("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportFromFile()
|
|
|
|
|
{
|
|
|
|
|
throw EXCEPTION("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 cellVideoExportFinalize()
|
|
|
|
|
{
|
|
|
|
|
throw EXCEPTION("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-09-08 15:53:28 +02:00
|
|
|
Module<> cellVideoExport("cellVideoExport", []()
|
2015-07-31 01:11:43 +02:00
|
|
|
{
|
|
|
|
|
REG_FUNC(cellVideoExport, cellVideoExportProgress);
|
|
|
|
|
REG_FUNC(cellVideoExport, cellVideoExportInitialize2);
|
|
|
|
|
REG_FUNC(cellVideoExport, cellVideoExportInitialize);
|
|
|
|
|
REG_FUNC(cellVideoExport, cellVideoExportFromFileWithCopy);
|
|
|
|
|
REG_FUNC(cellVideoExport, cellVideoExportFromFile);
|
|
|
|
|
REG_FUNC(cellVideoExport, cellVideoExportFinalize);
|
|
|
|
|
});
|