2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-05 22:35:53 +00:00
metaforce/Runtime/CIOWinManager.cpp
2015-08-21 15:58:41 -10:00

22 lines
377 B
C++

#include "CIOWinManager.hpp"
#include "CArchitectureMessage.hpp"
namespace Retro
{
bool CIOWinManager::OnIOWinMessage(const CArchitectureMessage& msg)
{
switch (msg.GetType())
{
case MsgChangeIOWinPriority:
{
const CArchMsgParmInt32Int32VoidPtr& parm = MakeMsg::GetParmChangeIOWinPriority(msg);
}
default: break;
}
return false;
}
}