Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, TranslateRequest and HandleSyncRequestImpl.

HandleSyncRequest now takes care of calling the command buffer translate function before actually invoking the command handler for HLE services.
This commit is contained in:
Subv
2016-12-05 12:05:00 -05:00
parent 728bb5f40b
commit 708ece3fff
6 changed files with 59 additions and 22 deletions
+1
View File
@@ -4,6 +4,7 @@
#include "common/assert.h"
#include "core/hle/kernel/client_port.h"
#include "core/hle/kernel/client_session.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/server_port.h"
#include "core/hle/kernel/server_session.h"
+1
View File
@@ -4,6 +4,7 @@
#pragma once
#include <memory>
#include <string>
#include <tuple>
#include "common/common_types.h"