rpcsx/rpcs3/Emu/Cell/Modules/cellVideoExport.cpp

46 lines
1 KiB
C++
Raw Normal View History

2016-03-21 20:43:03 +01:00
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
2017-05-13 20:30:37 +02:00
logs::channel cellVideoExport("cellVideoExport");
2016-03-21 20:43:03 +01:00
s32 cellVideoExportProgress()
{
fmt::throw_exception("Unimplemented" HERE);
2016-03-21 20:43:03 +01:00
}
s32 cellVideoExportInitialize2()
{
fmt::throw_exception("Unimplemented" HERE);
2016-03-21 20:43:03 +01:00
}
s32 cellVideoExportInitialize()
{
fmt::throw_exception("Unimplemented" HERE);
2016-03-21 20:43:03 +01:00
}
s32 cellVideoExportFromFileWithCopy()
{
fmt::throw_exception("Unimplemented" HERE);
2016-03-21 20:43:03 +01:00
}
s32 cellVideoExportFromFile()
{
fmt::throw_exception("Unimplemented" HERE);
2016-03-21 20:43:03 +01:00
}
s32 cellVideoExportFinalize()
{
fmt::throw_exception("Unimplemented" HERE);
2016-03-21 20:43:03 +01:00
}
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);
});