[MOD] Make command list a .x.h file

This commit is contained in:
LDA 2024-08-06 22:21:51 +02:00
commit 93d7b0f8e0
3 changed files with 4 additions and 2 deletions

View file

@ -127,7 +127,9 @@ PresenceStanza(ParseeData *args, XMLElement *stanza)
char *muc = ParseeTrimJID(HashMapGet(stanza->attrs, "from"));
char *usr = HashMapGet(stanza->attrs, "to");
/* Ask for voice */
/* Ask for voice in a visitor self-presence. We do not notify
* the user, as an error MUST occur, which is handled and
* logged out. */
XMPPRequestVoice(args->jabber, usr, muc);
Free(muc);

View file

@ -103,7 +103,7 @@ extern bool XMPPManageCommand(XMPPCommandManager *m, XMLElement *stanza, ParseeD
extern void \
Form##f(XMPPCommandManager *, XMPPCommand *, char *); \
#include "XMPPCommands.x"
#include "XMPPCommands.x.h"
#undef XMPP_COMMAND
#endif