From b8092ca1d073802b2977b1b8ef8865b1db136511 Mon Sep 17 00:00:00 2001 From: Azreyo <58790873+Azreyo@users.noreply.github.com> Date: Sun, 9 Feb 2025 13:08:26 +0100 Subject: [PATCH] Update server_config.h --- server_config.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server_config.h b/server_config.h index 0aa7b82..d8dde80 100644 --- a/server_config.h +++ b/server_config.h @@ -9,9 +9,12 @@ typedef struct { char log_file[256]; int max_threads; bool running; + bool automatic_startup; //TODO func automatic startup on boot } ServerConfig; int load_config(const char *filename, ServerConfig *config); void init_config(ServerConfig *config); +void log_event(const char *message); -#endif \ No newline at end of file + +#endif