Atmosphere/mesosphere/source/interfaces/IInterruptibleWork.cpp
2019-06-03 17:41:00 -07:00

12 lines
198 B
C++

#include <mesosphere/interfaces/IInterruptibleWork.hpp>
namespace mesosphere
{
IWork *IInterruptibleWork::HandleInterrupt(uint interruptId)
{
(void)interruptId;
return (IWork *)this;
}
}