mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 16:15:46 +00:00
hle: Rename RequestBuilder to ResponseBuilder.
This commit is contained in:
parent
427b97e60c
commit
f328cb2c7c
19 changed files with 129 additions and 128 deletions
|
@ -65,7 +65,7 @@ private:
|
|||
*/
|
||||
void Log(Kernel::HLERequestContext& ctx) {
|
||||
// This function only succeeds - Get that out of the way
|
||||
IPC::RequestBuilder rb{ctx, 2};
|
||||
IPC::ResponseBuilder rb{ctx, 2};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
|
||||
// Read MessageHeader, despite not doing anything with it right now
|
||||
|
@ -146,7 +146,7 @@ void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|||
* 0: ResultCode
|
||||
*/
|
||||
void LM::Initialize(Kernel::HLERequestContext& ctx) {
|
||||
IPC::RequestBuilder rb{ctx, 2, 0, 1};
|
||||
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.PushIpcInterface<Logger>();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue