From 2820552db8b5f7307ed95bd7eeba5a1a4c553fbf Mon Sep 17 00:00:00 2001 From: anth64 Date: Sun, 11 Jan 2026 21:09:51 +0100 Subject: [PATCH] Add STK_MOD_RELOAD to module event enum --- include/stk.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/stk.h b/include/stk.h index 68d0123..788b67f 100644 --- a/include/stk.h +++ b/include/stk.h @@ -11,7 +11,11 @@ extern "C" { #endif -typedef enum { STK_MOD_LOAD, STK_MOD_UNLOAD } stk_module_event_t; +typedef enum { + STK_MOD_LOAD, + STK_MOD_UNLOAD, + STK_MOD_RELOAD +} stk_module_event_t; int stk_init(const char *mod_dir); void stk_shutdown(void);