SVC: move function_wrappers.h into kernel

It is only used by kernel/SVC
This commit is contained in:
Weiyi Wang 2018-11-04 22:28:02 -05:00
parent f43524fff1
commit d373a6430d
3 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,6 @@ add_library(core STATIC
hle/applets/mint.h
hle/applets/swkbd.cpp
hle/applets/swkbd.h
hle/function_wrappers.h
hle/ipc.h
hle/ipc_helpers.h
hle/kernel/address_arbiter.cpp
@ -117,6 +116,7 @@ add_library(core STATIC
hle/kernel/errors.h
hle/kernel/event.cpp
hle/kernel/event.h
hle/kernel/function_wrappers.h
hle/kernel/handle_table.cpp
hle/kernel/handle_table.h
hle/kernel/hle_ipc.cpp

View File

@ -11,12 +11,12 @@
#include "common/scope_exit.h"
#include "core/arm/arm_interface.h"
#include "core/core_timing.h"
#include "core/hle/function_wrappers.h"
#include "core/hle/kernel/address_arbiter.h"
#include "core/hle/kernel/client_port.h"
#include "core/hle/kernel/client_session.h"
#include "core/hle/kernel/errors.h"
#include "core/hle/kernel/event.h"
#include "core/hle/kernel/function_wrappers.h"
#include "core/hle/kernel/handle_table.h"
#include "core/hle/kernel/ipc.h"
#include "core/hle/kernel/memory.h"