mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-10 14:54:48 +00:00
22 lines
402 B
C++
22 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();
|
||
|
}
|
||
|
|
||
|
}
|