aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-04-14 14:43:12 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2024-04-14 14:43:12 +0200
commit3a8c7dc97d1b892dde89da24a6b8d67bf645ab81 (patch)
treeff33bd29f13d56cea4a3fe8d9ef2448f1c4f7592
parent58e5b0f0b1359c0deeee139eeb43e8fd7f73d619 (diff)
Added parameter lists
-rw-r--r--FICS/talkproc.h35
1 files changed, 18 insertions, 17 deletions
diff --git a/FICS/talkproc.h b/FICS/talkproc.h
index f83d653..7cc7a88 100644
--- a/FICS/talkproc.h
+++ b/FICS/talkproc.h
@@ -33,22 +33,23 @@
extern int quota_time;
-extern int com_clearmessages();
-extern int com_cshout();
-extern int com_inchannel(int, param_list);
-extern int com_it();
-extern int com_kibitz();
-extern int com_mailmess(int, param_list);
-extern int com_messages();
-extern int com_ptell();
-extern int com_qtell();
-extern int com_say();
-extern int com_sendmessage();
-extern int com_shout();
-extern int com_tell();
-extern int com_whisper();
-extern int com_xtell();
-extern int com_znotify();
-extern int on_channel(int, int);
+extern int com_clearmessages(int, param_list);
+extern int com_cshout(int, param_list);
+extern int com_inchannel(int, param_list);
+extern int com_it(int, param_list);
+extern int com_kibitz(int, param_list);
+extern int com_mailmess(int, param_list);
+extern int com_messages(int, param_list);
+extern int com_ptell(int, param_list);
+extern int com_qtell(int, param_list);
+extern int com_say(int, param_list);
+extern int com_sendmessage(int, param_list);
+extern int com_shout(int, param_list);
+extern int com_tell(int, param_list);
+extern int com_whisper(int, param_list);
+extern int com_xtell(int, param_list);
+extern int com_znotify(int, param_list);
+
+extern int on_channel(int, int);
#endif /* _TALKPROC_H */