mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-26 23:16:38 +02:00
dc55c3ec9f
This is only for calls within the same module, as otherwise you should use do_cmd(). Benefit of this way is that it is short and you don't have to worry about passing the right command parameters, which may change over time. Example as used in src/modules/nick.c: - cmd_nick_remote(client, recv_mtags, parc, parv); + CALL_CMD_FUNC(cmd_nick_remote);