1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-14 16:06:56 +00:00
Atmosphere/mesosphere/source/processes/KPort.cpp
2019-06-03 17:41:08 -07:00

20 lines
276 B
C++

#include <mesosphere/processes/KPort.hpp>
#include <mesosphere/core/KCoreContext.hpp>
namespace mesosphere
{
KPort::~KPort()
{
}
Result KPort::Initialize()
{
SetClientServerParent();
isClientAlive = true;
isServerAlive = true;
return ResultSuccess();
}
}