Atmosphere/mesosphere/source/interfaces/IInterruptibleWork.cpp

13 lines
198 B
C++
Raw Normal View History

2018-10-31 16:47:31 -04:00
#include <mesosphere/interfaces/IInterruptibleWork.hpp>
namespace mesosphere
{
IWork *IInterruptibleWork::HandleInterrupt(uint interruptId)
{
(void)interruptId;
return (IWork *)this;
}
}