From c24a8e43e371883a2d6512e5e2208bb10bc8246d Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sun, 19 Jun 2022 10:34:08 +0200 Subject: [PATCH] Fix outdated doxygen information on CMD_FUNC() --- include/struct.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/struct.h b/include/struct.h index b4d6d90d8..046d65288 100644 --- a/include/struct.h +++ b/include/struct.h @@ -876,8 +876,9 @@ struct SWhois { /** Command function - used by all command handlers. * This is used in the code like
CMD_FUNC(cmd_yourcmd)
as a function definition. - * @param cptr The client direction pointer. - * @param client The source client pointer (you usually need this one). + * It allows UnrealIRCd devs to change the parameters in the function without + * (necessarily) breaking your code. + * @param client The client * @param recv_mtags Received message tags for this command. * @param parc Parameter count *plus* 1. * @param parv Parameter values.