rpcsx/rpcs3/Emu/SysCalls/Modules/cellVideoUpload.cpp

16 lines
289 B
C++
Raw Normal View History

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