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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/event.h b/src/core/hle/kernel/event.h
index c1842cb88..b1d2c6ad1 100644
--- a/src/core/hle/kernel/event.h
+++ b/src/core/hle/kernel/event.h
@@ -15,8 +15,9 @@ namespace Kernel {
15 * Changes whether an event is locked or not 15 * Changes whether an event is locked or not
16 * @param handle Handle to event to change 16 * @param handle Handle to event to change
17 * @param locked Boolean locked value to set event 17 * @param locked Boolean locked value to set event
18 * @return Result of operation, 0 on success, otherwise error code
18 */ 19 */
19void SetEventLocked(const Handle handle, const bool locked); 20Result SetEventLocked(const Handle handle, const bool locked);
20 21
21/** 22/**
22 * Clears an event 23 * Clears an event
@@ -28,7 +29,7 @@ Result ClearEvent(Handle handle);
28/** 29/**
29 * Creates an event 30 * Creates an event
30 * @param reset_type ResetType describing how to create event 31 * @param reset_type ResetType describing how to create event
31 * @return Handle to newly created object 32 * @return Handle to newly created Event object
32 */ 33 */
33Handle CreateEvent(const ResetType reset_type); 34Handle CreateEvent(const ResetType reset_type);
34 35