mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-14 16:06:56 +00: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();
|
||
|
}
|
||
|
|
||
|
}
|