mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 10:40:41 +00:00
45 lines
685 B
C++
45 lines
685 B
C++
#include "Iop_SifManNull.h"
|
|
|
|
using namespace Iop;
|
|
|
|
void CSifManNull::RegisterModule(uint32, CSifModule*)
|
|
{
|
|
}
|
|
|
|
bool CSifManNull::IsModuleRegistered(uint32)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void CSifManNull::UnregisterModule(uint32)
|
|
{
|
|
}
|
|
|
|
void CSifManNull::SendPacket(void*, uint32)
|
|
{
|
|
}
|
|
|
|
void CSifManNull::SetDmaBuffer(uint32, uint32)
|
|
{
|
|
}
|
|
|
|
void CSifManNull::SetCmdBuffer(uint32, uint32)
|
|
{
|
|
}
|
|
|
|
void CSifManNull::SendCallReply(uint32, const void*)
|
|
{
|
|
}
|
|
|
|
void CSifManNull::GetOtherData(uint32, uint32, uint32)
|
|
{
|
|
}
|
|
|
|
void CSifManNull::SetModuleResetHandler(const ModuleResetHandler&)
|
|
{
|
|
}
|
|
|
|
void CSifManNull::SetCustomCommandHandler(const CustomCommandHandler&)
|
|
{
|
|
}
|