summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/event.h')
-rw-r--r--src/core/hle/kernel/event.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/kernel/event.h b/src/core/hle/kernel/event.h
index 2ef1bd65b..0bcfe00b7 100644
--- a/src/core/hle/kernel/event.h
+++ b/src/core/hle/kernel/event.h
@@ -12,6 +12,13 @@
12namespace Kernel { 12namespace Kernel {
13 13
14/** 14/**
15 * Changes whether an event is locked or not
16 * @param handle Handle to event to change
17 * @param locked Boolean locked value to set event
18 */
19void SetEventLocked(const Handle handle, const bool locked)
20
21/**
15 * Clears an event 22 * Clears an event
16 * @param handle Handle to event to clear 23 * @param handle Handle to event to clear
17 * @return Result of operation, 0 on success, otherwise error code 24 * @return Result of operation, 0 on success, otherwise error code