early-access version 3074

This commit is contained in:
pineappleEA
2022-11-01 15:32:03 +01:00
parent 6f8a270c02
commit bfb6966ad8
23 changed files with 442 additions and 339 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;