mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-03 05:07:14 +01:00
17 lines
314 B
C++
17 lines
314 B
C++
#include <mesosphere/processes/KWritableEvent.hpp>
|
|
#include <mesosphere/processes/KReadableEvent.hpp>
|
|
#include <mesosphere/processes/KEvent.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
Result KWritableEvent::Signal() {
|
|
return this->client->Signal();
|
|
}
|
|
|
|
Result KWritableEvent::Clear() {
|
|
return this->client->Clear();
|
|
}
|
|
|
|
}
|