diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-07-12 23:10:37 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-07-12 23:10:37 +0200 |
commit | fe909b3b5adb5e1306a1c85e6e1275424a6371b2 (patch) | |
tree | 28cd4fbd98402187dbaa0a87e14eabaff88ff8d0 /src/core/hle/service | |
parent | Merge pull request #823 from Subv/applets_drawing (diff) | |
download | yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.gz yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.bz2 yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.lz yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.xz yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.zst yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/apt/apt.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/hle/service/apt/apt.h b/src/core/hle/service/apt/apt.h index 9f0802508..72972d05b 100644 --- a/src/core/hle/service/apt/apt.h +++ b/src/core/hle/service/apt/apt.h @@ -4,11 +4,14 @@ #pragma once -#include <array> -#include "core/hle/result.h" -#include "core/hle/service/service.h" +#include "common/common_types.h" + +#include "core/hle/kernel/kernel.h" namespace Service { + +class Interface; + namespace APT { /// Holds information about the parameters used in Send/Glance/ReceiveParameter |