mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-06 02:15:18 +01:00
37 lines
895 B
C++
37 lines
895 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
#include "core/hle/svc.h"
|
|
|
|
namespace Kernel {
|
|
|
|
/**
|
|
* Signals an event
|
|
* @param handle Handle to event to signal
|
|
* @return Result of operation, 0 on success, otherwise error code
|
|
*/
|
|
ResultCode SignalEvent(const Handle handle);
|
|
|
|
/**
|
|
* Clears an event
|
|
* @param handle Handle to event to clear
|
|
* @return Result of operation, 0 on success, otherwise error code
|
|
*/
|
|
ResultCode ClearEvent(Handle handle);
|
|
|
|
/**
|
|
* Creates an event
|
|
* @param reset_type ResetType describing how to create event
|
|
* @param name Optional name of event
|
|
* @return Handle to newly created Event object
|
|
*/
|
|
Handle CreateEvent(const ResetType reset_type, const std::string& name="Unknown");
|
|
|
|
} // namespace
|