Add STK_MOD_RELOAD to module event enum

This commit is contained in:
2026-01-11 21:09:51 +01:00
parent 86f08bec19
commit 2820552db8
+5 -1
View File
@@ -11,7 +11,11 @@
extern "C" { extern "C" {
#endif #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); int stk_init(const char *mod_dir);
void stk_shutdown(void); void stk_shutdown(void);