mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Partial commit: Modules (cell)
This commit is contained in:
parent
7e30a0f464
commit
5637c22363
140 changed files with 7290 additions and 8243 deletions
57
rpcs3/Emu/Cell/Modules/cellRemotePlay.cpp
Normal file
57
rpcs3/Emu/Cell/Modules/cellRemotePlay.cpp
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(cellRemotePlay);
|
||||
|
||||
s32 cellRemotePlayGetStatus()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellRemotePlaySetComparativeVolume()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellRemotePlayGetPeerInfo()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellRemotePlayGetSharedMemory()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellRemotePlayEncryptAllData()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellRemotePlayStopPeerVideoOut()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellRemotePlayGetComparativeVolume()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 cellRemotePlayBreak()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
|
||||
DECLARE(ppu_module_manager::cellRemotePlay)("cellRemotePlay", []()
|
||||
{
|
||||
REG_FUNC(cellRemotePlay, cellRemotePlayGetStatus);
|
||||
REG_FUNC(cellRemotePlay, cellRemotePlaySetComparativeVolume);
|
||||
REG_FUNC(cellRemotePlay, cellRemotePlayGetPeerInfo);
|
||||
REG_FUNC(cellRemotePlay, cellRemotePlayGetSharedMemory);
|
||||
REG_FUNC(cellRemotePlay, cellRemotePlayEncryptAllData);
|
||||
REG_FUNC(cellRemotePlay, cellRemotePlayStopPeerVideoOut);
|
||||
REG_FUNC(cellRemotePlay, cellRemotePlayGetComparativeVolume);
|
||||
REG_FUNC(cellRemotePlay, cellRemotePlayBreak);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue