mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
16 lines
285 B
C++
16 lines
285 B
C++
|
|
#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);
|
||
|
|
});
|