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

15 lines
337 B
C++
Raw Normal View History

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