mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-26 14:41:17 +00:00
19 lines
307 B
C++
19 lines
307 B
C++
#include <mesosphere/processes/KEvent.hpp>
|
|
#include <mesosphere/processes/KProcess.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
KEvent::~KEvent()
|
|
{
|
|
}
|
|
|
|
Result KEvent::Initialize()
|
|
{
|
|
SetClientServerParent();
|
|
SetResourceOwner(KCoreContext::GetCurrentInstance().GetCurrentProcess());
|
|
|
|
return ResultSuccess();
|
|
}
|
|
|
|
}
|