summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-12-27 23:07:35 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-12-27 23:07:35 -0600
commitacf7032b8568570136d48208f840964cdc1d6edd (patch)
tree0f15897fedc6998eb8143fc36b71607acb844a7c
parentd0fb09f25ce180fcee46997cecf7899c6e41f13f (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;