mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-25 22:21:14 +00:00
20 lines
351 B
C++
20 lines
351 B
C++
#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());
|
|
|
|
return ResultSuccess();
|
|
}
|
|
|
|
}
|