mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
cellStorage.cpp, cellVideo(Export|Upload) modules
This commit is contained in:
parent
137a38b3c6
commit
eb5974322f
7 changed files with 107 additions and 2 deletions
46
rpcs3/Emu/SysCalls/Modules/cellVideoExport.cpp
Normal file
46
rpcs3/Emu/SysCalls/Modules/cellVideoExport.cpp
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/SysCalls/Modules.h"
|
||||
|
||||
extern Module 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("");
|
||||
}
|
||||
|
||||
|
||||
Module cellVideoExport("cellVideoExport", []()
|
||||
{
|
||||
REG_FUNC(cellVideoExport, cellVideoExportProgress);
|
||||
REG_FUNC(cellVideoExport, cellVideoExportInitialize2);
|
||||
REG_FUNC(cellVideoExport, cellVideoExportInitialize);
|
||||
REG_FUNC(cellVideoExport, cellVideoExportFromFileWithCopy);
|
||||
REG_FUNC(cellVideoExport, cellVideoExportFromFile);
|
||||
REG_FUNC(cellVideoExport, cellVideoExportFinalize);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue