2015-07-31 00:53:52 +02:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/Memory/Memory.h"
|
|
|
|
|
#include "Emu/SysCalls/Modules.h"
|
|
|
|
|
|
2015-09-08 15:53:28 +02:00
|
|
|
extern Module<> cellRemotePlay;
|
2015-07-31 00:53:52 +02:00
|
|
|
|
|
|
|
|
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("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-09-08 15:53:28 +02:00
|
|
|
Module<> cellRemotePlay("cellRemotePlay", []()
|
2015-07-31 00:53:52 +02:00
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
});
|