mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +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
15
rpcs3/Emu/SysCalls/Modules/cellVideoUpload.cpp
Normal file
15
rpcs3/Emu/SysCalls/Modules/cellVideoUpload.cpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/SysCalls/Modules.h"
|
||||
|
||||
extern Module cellVideoUpload;
|
||||
|
||||
s32 cellVideoUploadInitialize()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
Module cellVideoUpload("cellVideoUpload", []()
|
||||
{
|
||||
REG_FUNC(cellVideoUpload, cellVideoUploadInitialize);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue