metaforce/Runtime/CIOWinManager.cpp

22 lines
377 B
C++
Raw Normal View History

2015-08-19 19:52:07 -07:00
#include "CIOWinManager.hpp"
2015-08-21 18:58:41 -07:00
#include "CArchitectureMessage.hpp"
2015-08-19 19:52:07 -07:00
namespace Retro
{
bool CIOWinManager::OnIOWinMessage(const CArchitectureMessage& msg)
{
switch (msg.GetType())
{
case MsgChangeIOWinPriority:
{
const CArchMsgParmInt32Int32VoidPtr& parm = MakeMsg::GetParmChangeIOWinPriority(msg);
}
default: break;
}
return false;
}
}