Atmosphere/mesosphere/source/processes/KPort.cpp

21 lines
276 B
C++
Raw Normal View History

2018-11-12 13:52:57 +00:00
#include <mesosphere/processes/KPort.hpp>
#include <mesosphere/core/KCoreContext.hpp>
namespace mesosphere
{
KPort::~KPort()
{
}
Result KPort::Initialize()
{
SetClientServerParent();
isClientAlive = true;
isServerAlive = true;
return ResultSuccess();
}
}