mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-10 06:46:18 +00:00
21 lines
402 B
C++
21 lines
402 B
C++
#include <mesosphere/processes/KLightSession.hpp>
|
|
#include <mesosphere/core/KCoreContext.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
KLightSession::~KLightSession()
|
|
{
|
|
}
|
|
|
|
Result KLightSession::Initialize()
|
|
{
|
|
SetClientServerParent();
|
|
client.isRemoteActive = true;
|
|
server.isRemoteActive = true;
|
|
|
|
SetResourceOwner(KCoreContext::GetCurrentInstance().GetCurrentProcess());
|
|
return ResultSuccess();
|
|
}
|
|
|
|
}
|