diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2018-11-26 18:34:07 -0500 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2018-11-29 08:45:41 -0500 |
| commit | ff610103b58b3e0dd39fafb539a1cc0bc0fae577 (patch) | |
| tree | cbd54b09f9270f6f1d92a2f45a5ccdb307569093 /src/core/hle/service/aoc/aoc_u.h | |
| parent | a56fc84e7a116681373ab9157193d2b8ae0f29af (diff) | |
core: Port all current usages of Event to Readable/WritableEvent
Diffstat (limited to 'src/core/hle/service/aoc/aoc_u.h')
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.h | 6 |
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..f32a757aa 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::SharedPtr<Kernel::WritableEvent> aoc_change_event; }; /// Registers all AOC services with the specified service manager. |
