summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-12-27 23:07:35 -0600
committerLywx <kiritodev01@gmail.com>2025-01-03 16:56:49 -0600
commitf949f675a24a46fd161fe8db0a5f4d8f562f3b1e (patch)
treef440ebfc7de46f3e04f22019919df81ef27107d5
parentc05a489d605c554a28064cf9b92549d6a4965988 (diff)
Fixed event typedefs
-rw-r--r--src/port/hooks/impl/EventSystem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/port/hooks/impl/EventSystem.h b/src/port/hooks/impl/EventSystem.h
index 1489c182..df35545d 100644
--- a/src/port/hooks/impl/EventSystem.h
+++ b/src/port/hooks/impl/EventSystem.h
@@ -6,18 +6,18 @@
typedef uint16_t EventID;
-typedef enum EventType {
+typedef enum {
EVENT_TYPE_PRE,
EVENT_TYPE_POST
} EventType;
-typedef enum EventPriority {
+typedef enum {
EVENT_PRIORITY_LOW,
EVENT_PRIORITY_NORMAL,
EVENT_PRIORITY_HIGH,
} EventPriority;
-typedef struct IEvent {
+typedef struct {
bool cancelled;
} IEvent;