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

15 lines
337 B
C++
Raw Normal View History

2016-03-21 20:43:03 +01:00
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
2016-05-13 15:55:34 +02:00
logs::channel cellVideoUpload("cellVideoUpload", logs::level::notice);
2016-03-21 20:43:03 +01:00
s32 cellVideoUploadInitialize()
{
fmt::throw_exception("Unimplemented" HERE);
2016-03-21 20:43:03 +01:00
}
DECLARE(ppu_module_manager::cellVideoUpload)("cellVideoUpload", []()
{
REG_FUNC(cellVideoUpload, cellVideoUploadInitialize);
});