mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-15 00:16:48 +00:00
13 lines
198 B
C++
13 lines
198 B
C++
|
#include <mesosphere/interfaces/IInterruptibleWork.hpp>
|
||
|
|
||
|
namespace mesosphere
|
||
|
{
|
||
|
|
||
|
IWork *IInterruptibleWork::HandleInterrupt(uint interruptId)
|
||
|
{
|
||
|
(void)interruptId;
|
||
|
return (IWork *)this;
|
||
|
}
|
||
|
|
||
|
}
|