rpcsx/rpcs3/Emu/Cell/Modules/cellVideoUpload.cpp
Nekotekina a7e808b35b EXCEPTION macro removed
fmt::throw_exception<> implemented
::narrow improved
Minor fixes
2016-08-08 19:19:32 +03:00

15 lines
337 B
C++

#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
logs::channel cellVideoUpload("cellVideoUpload", logs::level::notice);
s32 cellVideoUploadInitialize()
{
fmt::throw_exception("Unimplemented" HERE);
}
DECLARE(ppu_module_manager::cellVideoUpload)("cellVideoUpload", []()
{
REG_FUNC(cellVideoUpload, cellVideoUploadInitialize);
});