aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/aoc/aoc_u.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-03 17:05:57 -0500
committerGitHub <noreply@github.com>2018-12-03 17:05:57 -0500
commitef69b4b83050967732e6e977396111289c9e86ba (patch)
tree0f0908b21f5cec9dca4d2269cd724cfca81848db /src/core/hle/service/aoc/aoc_u.h
parentf7d5f7294425f59bb9d7c417fa04efcbd49ced91 (diff)
parent170d7078507745fee4c8952aa5888108b2b76b91 (diff)
Merge pull request #1803 from DarkLordZach/k-able-event
kernel: Divide Event into ReadableEvent and WritableEvent
Diffstat (limited to 'src/core/hle/service/aoc/aoc_u.h')
-rw-r--r--src/core/hle/service/aoc/aoc_u.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h
index 68d94fdaa..5effea730 100644
--- a/src/core/hle/service/aoc/aoc_u.h
+++ b/src/core/hle/service/aoc/aoc_u.h
@@ -6,6 +6,10 @@
#include "core/hle/service/service.h"
+namespace Kernel {
+class WritableEvent;
+}
+
namespace Service::AOC {
class AOC_U final : public ServiceFramework<AOC_U> {
@@ -21,7 +25,7 @@ private:
void GetAddOnContentListChangedEvent(Kernel::HLERequestContext& ctx);
std::vector<u64> add_on_content;
- Kernel::SharedPtr<Kernel::Event> aoc_change_event;
+ Kernel::EventPair aoc_change_event;
};
/// Registers all AOC services with the specified service manager.