2014-05-28 00:16:13 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-28 00:16:13 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
#include "core/hle/svc.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2014-06-06 02:35:36 +00:00
|
|
|
/**
|
|
|
|
* Signals an event
|
|
|
|
* @param handle Handle to event to signal
|
2015-01-16 00:29:46 +00:00
|
|
|
* @return Result of operation, 0 on success, otherwise error code
|
2014-06-06 02:35:36 +00:00
|
|
|
*/
|
2014-10-23 03:20:01 +00:00
|
|
|
ResultCode SignalEvent(const Handle handle);
|
2014-06-06 02:35:36 +00:00
|
|
|
|
2014-05-28 00:16:13 +00:00
|
|
|
/**
|
|
|
|
* Clears an event
|
|
|
|
* @param handle Handle to event to clear
|
2015-01-16 00:29:46 +00:00
|
|
|
* @return Result of operation, 0 on success, otherwise error code
|
2014-05-28 00:16:13 +00:00
|
|
|
*/
|
2014-10-23 03:20:01 +00:00
|
|
|
ResultCode ClearEvent(Handle handle);
|
2014-05-28 00:16:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an event
|
|
|
|
* @param reset_type ResetType describing how to create event
|
2014-06-03 00:38:34 +00:00
|
|
|
* @param name Optional name of event
|
2014-05-30 00:00:44 +00:00
|
|
|
* @return Handle to newly created Event object
|
2014-05-28 00:16:13 +00:00
|
|
|
*/
|
2014-06-06 04:23:33 +00:00
|
|
|
Handle CreateEvent(const ResetType reset_type, const std::string& name="Unknown");
|
2014-05-28 00:16:13 +00:00
|
|
|
|
|
|
|
} // namespace
|