move ResetType to kernel.h
This commit is contained in:
		@@ -9,12 +9,6 @@
 | 
			
		||||
 | 
			
		||||
namespace Kernel {
 | 
			
		||||
 | 
			
		||||
enum class ResetType {
 | 
			
		||||
    OneShot,
 | 
			
		||||
    Sticky,
 | 
			
		||||
    Pulse,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
class Event final : public WaitObject {
 | 
			
		||||
public:
 | 
			
		||||
    /**
 | 
			
		||||
 
 | 
			
		||||
@@ -53,6 +53,12 @@ enum {
 | 
			
		||||
    DEFAULT_STACK_SIZE = 0x4000,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
enum class ResetType {
 | 
			
		||||
    OneShot,
 | 
			
		||||
    Sticky,
 | 
			
		||||
    Pulse,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
class Object : NonCopyable {
 | 
			
		||||
public:
 | 
			
		||||
    virtual ~Object() {}
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,6 @@
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "common/common_types.h"
 | 
			
		||||
#include "core/hle/kernel/event.h"
 | 
			
		||||
#include "core/hle/kernel/kernel.h"
 | 
			
		||||
 | 
			
		||||
namespace Kernel {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user