mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
46 lines
1 KiB
C++
46 lines
1 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
logs::channel cellVideoExport("cellVideoExport", logs::level::notice);
|
|
|
|
s32 cellVideoExportProgress()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 cellVideoExportInitialize2()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 cellVideoExportInitialize()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 cellVideoExportFromFileWithCopy()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 cellVideoExportFromFile()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 cellVideoExportFinalize()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
|
|
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);
|
|
});
|