early-access version 3056

This commit is contained in:
pineappleEA
2022-10-27 16:34:57 +02:00
parent 65c0affdaf
commit 46450366f5
31 changed files with 527 additions and 366 deletions

View File

@@ -20,6 +20,7 @@ class System;
namespace Kernel {
class HLERequestContext;
class KClientPort;
class KPort;
class KServerSession;
class ServiceThread;
} // namespace Kernel
@@ -98,6 +99,9 @@ protected:
/// Identifier string used to connect to the service.
std::string service_name;
/// Port used by ManageNamedPort.
Kernel::KPort* named_port{};
private:
template <typename T>
friend class ServiceFramework;