diff options
| author | Liam <byteslice@airmail.cc> | 2023-12-09 11:22:42 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2023-12-09 13:45:25 -0500 |
| commit | 34e40129989e446db7233c9b757d4ebd48af7e75 (patch) | |
| tree | 42fa67cdc03cc901eec752fddb6c462ff762a630 /src/core/hle/service/hle_ipc.h | |
| parent | c1924951ad604417a5f7900427bff4ab0c8286a7 (diff) | |
service: use interface factory in server manager
Diffstat (limited to 'src/core/hle/service/hle_ipc.h')
| -rw-r--r-- | src/core/hle/service/hle_ipc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/hle_ipc.h b/src/core/hle/service/hle_ipc.h index ad5259a5c..4436f4f83 100644 --- a/src/core/hle/service/hle_ipc.h +++ b/src/core/hle/service/hle_ipc.h @@ -75,6 +75,7 @@ protected: using SessionRequestHandlerWeakPtr = std::weak_ptr<SessionRequestHandler>; using SessionRequestHandlerPtr = std::shared_ptr<SessionRequestHandler>; +using SessionRequestHandlerFactory = std::function<SessionRequestHandlerPtr()>; /** * Manages the underlying HLE requests for a session, and whether (or not) the session should be |
