diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-18 22:27:49 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-18 22:27:49 +0100 |
commit | 1d589e998c636249e4082a6688a142aa547cc4bf (patch) | |
tree | da190993fc3bdb8996aa9539f7a9cd8a7ffc2cbd /FICS/shutdown.h | |
parent | b5983ddb6fbc576e06c06989c1d3b1d344025b7f (diff) |
Added argument lists
Diffstat (limited to 'FICS/shutdown.h')
-rw-r--r-- | FICS/shutdown.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/FICS/shutdown.h b/FICS/shutdown.h index d2635ee..115c863 100644 --- a/FICS/shutdown.h +++ b/FICS/shutdown.h @@ -3,12 +3,14 @@ #ifndef _SHUTDOWN_H #define _SHUTDOWN_H +#include "command.h" /* param_list */ + extern int check_and_print_shutdown(int); -extern int com_shutdown(); -extern int com_whenshut(); -extern int server_shutdown(); -extern void ShutDown(); -extern void ShutHeartBeat(); -extern void output_shut_mess(); +extern int com_shutdown(int, param_list); +extern int com_whenshut(int, param_list); +extern int server_shutdown(int, char *); +extern void ShutDown(void); +extern void ShutHeartBeat(void); +extern void output_shut_mess(void); #endif /* _SHUTDOWN_H */ |