diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-06-06 10:29:46 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-06-06 11:57:23 +0200 |
commit | d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7 (patch) | |
tree | 3219885089d1d9c4aa56c98d5f00206b19832305 /src/core/hle/service/am | |
parent | Service: Make service registration part of the sm implementation (diff) | |
download | yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.gz yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.bz2 yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.lz yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.xz yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.zst yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.zip |
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r-- | src/core/hle/service/am/am.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index d344a622f..961305e9f 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -2,8 +2,12 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <array> #include <cinttypes> +#include "common/common_types.h" #include "common/logging/log.h" +#include "core/hle/ipc.h" +#include "core/hle/result.h" #include "core/hle/service/am/am.h" #include "core/hle/service/am/am_app.h" #include "core/hle/service/am/am_net.h" @@ -176,8 +180,6 @@ void GetTicketList(Service::Interface* self) { } void Init() { - using namespace Kernel; - AddService(new AM_APP_Interface); AddService(new AM_NET_Interface); AddService(new AM_SYS_Interface); |