Atmosphere/mesosphere/source/processes/KEvent.cpp

21 lines
351 B
C++
Raw Normal View History

#include <mesosphere/processes/KEvent.hpp>
#include <mesosphere/core/KCoreContext.hpp>
#include <mesosphere/processes/KProcess.hpp>
namespace mesosphere
{
KEvent::~KEvent()
{
}
Result KEvent::Initialize()
{
SetClientServerParent();
SetResourceOwner(KCoreContext::GetCurrentInstance().GetCurrentProcess());
2018-11-05 19:40:24 +00:00
return ResultSuccess();
}
}