rpcsx/rpcs3/Emu/Cell/Modules/cellVideoExport.cpp
Nekotekina a7e808b35b EXCEPTION macro removed
fmt::throw_exception<> implemented
::narrow improved
Minor fixes
2016-08-08 19:19:32 +03:00

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);
});