mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-15 10:27:54 +00:00
hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.
This commit is contained in:
parent
a4a27a1ef2
commit
8b224f05c9
28 changed files with 65 additions and 59 deletions
|
@ -109,7 +109,7 @@ private:
|
|||
|
||||
IPC::ResponseBuilder rb{ctx, 2, 1};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.PushCopyObjects(event);
|
||||
rb.PushCopyObjects(event.get());
|
||||
}
|
||||
|
||||
void GetImpl(Kernel::HLERequestContext& ctx) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue