rpcsx/rpcs3/Emu/Cell/Modules/cellVideoExport.cpp
2016-04-15 19:22:29 +03:00

46 lines
895 B
C++

#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(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("");
}
DECLARE(ppu_module_manager::cellVideoExport)("cellVideoExportUtility", []()
{
REG_FUNC(cellVideoExportUtility, cellVideoExportProgress);
REG_FUNC(cellVideoExportUtility, cellVideoExportInitialize2);
REG_FUNC(cellVideoExportUtility, cellVideoExportInitialize);
REG_FUNC(cellVideoExportUtility, cellVideoExportFromFileWithCopy);
REG_FUNC(cellVideoExportUtility, cellVideoExportFromFile);
REG_FUNC(cellVideoExportUtility, cellVideoExportFinalize);
});