Kernel: Add methods in HLERequestContext abstracting handle creation

This commit is contained in:
Yuri Kunde Schlesner
2017-06-08 23:55:18 -07:00
parent 20e5abb308
commit 05fee70211
2 changed files with 12 additions and 0 deletions

View File

@ -80,6 +80,9 @@ public:
return session;
}
SharedPtr<Object> GetIncomingHandle(Handle id_from_cmdbuf) const;
Handle AddOutgoingHandle(SharedPtr<Object> object);
private:
friend class Service::ServiceFrameworkBase;