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