Skip to content
Snippets Groups Projects
Commit b6719ec9 authored by bunnei's avatar bunnei
Browse files

Merge pull request #921 from linkmauve/fix-applet

Fix applet includes using iwyu
parents d4f35fd9 fe909b3b
No related branches found
No related tags found
No related merge requests found
......@@ -2,12 +2,19 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstddef>
#include <memory>
#include <type_traits>
#include <unordered_map>
#include "common/assert.h"
#include "common/logging/log.h"
#include "common/common_types.h"
#include "core/core_timing.h"
#include "core/hle/applets/applet.h"
#include "core/hle/applets/swkbd.h"
#include "core/hle/result.h"
#include "core/hle/service/apt/apt.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
......
......@@ -4,9 +4,9 @@
#pragma once
#include "common/common_types.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/shared_memory.h"
#include <memory>
#include "core/hle/result.h"
#include "core/hle/service/apt/apt.h"
namespace HLE {
......
......@@ -2,13 +2,21 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstring>
#include <string>
#include "common/assert.h"
#include "common/logging/log.h"
#include "common/string_util.h"
#include "core/hle/applets/swkbd.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/shared_memory.h"
#include "core/hle/service/hid/hid.h"
#include "core/hle/service/gsp_gpu.h"
#include "core/hle/result.h"
#include "core/memory.h"
#include "video_core/video_core.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
......
......@@ -5,9 +5,12 @@
#pragma once
#include "common/common_types.h"
#include "common/common_funcs.h"
#include "core/hle/applets/applet.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/shared_memory.h"
#include "core/hle/result.h"
#include "core/hle/service/apt/apt.h"
namespace HLE {
......
......@@ -6,6 +6,7 @@
#include <bitset>
#include <cstddef>
#include <memory>
#include <string>
#include <boost/container/static_vector.hpp>
......
......@@ -4,9 +4,12 @@
#pragma once
#include <string>
#include "common/common_types.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/result.h"
namespace Kernel {
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment