diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-10 15:05:40 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-10 15:05:40 +0100 |
commit | ab79b6a6aaed8a5c1d3cf85cb5f02920a580b6fa (patch) | |
tree | 31ccd0ef4f9966f713de0597cc9c7c5d0bcd3d81 | |
parent | a3053b6a5581d72efef3bd171c55ff07e4ed3a01 (diff) |
Added the arugment list for com_inchannel()
-rw-r--r-- | FICS/talkproc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/FICS/talkproc.h b/FICS/talkproc.h index d5cee9d..5762117 100644 --- a/FICS/talkproc.h +++ b/FICS/talkproc.h @@ -27,13 +27,15 @@ #ifndef _TALKPROC_H #define _TALKPROC_H +#include "command.h" /* param_list */ + #define MAX_CHANNELS 256 extern int quota_time; extern int com_clearmessages(); extern int com_cshout(); -extern int com_inchannel(); +extern int com_inchannel(int, param_list); extern int com_it(); extern int com_kibitz(); extern int com_mailmess(); |