mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 06:58:08 -05:00
kernel: added event module to support creation of CTR "Event" objects
This commit is contained in:
28
src/core/hle/kernel/event.h
Normal file
28
src/core/hle/kernel/event.h
Normal file
@ -0,0 +1,28 @@
|
||||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// 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 {
|
||||
|
||||
/**
|
||||
* Clears an event
|
||||
* @param handle Handle to event to clear
|
||||
* @return Result of operation, 0 on success, otherwise error code
|
||||
*/
|
||||
Result ClearEvent(Handle handle);
|
||||
|
||||
/**
|
||||
* Creates an event
|
||||
* @param reset_type ResetType describing how to create event
|
||||
* @return Handle to newly created object
|
||||
*/
|
||||
Handle CreateEvent(const ResetType reset_type);
|
||||
|
||||
} // namespace
|
Reference in New Issue
Block a user