[ADD/WIP] Start adding reactions

This commit is contained in:
LDA 2024-06-27 03:41:24 +02:00
commit 1126497d5b
7 changed files with 93 additions and 6 deletions

View file

@ -12,6 +12,8 @@ extern HashMap * MatrixCreateNotice(char *body);
/* Creates the content for a normal message. */
extern HashMap * MatrixCreateMessage(char *body);
extern HashMap * MatrixCreateReact(char *event, char *body);
/* Creates the content for a replace message. */
extern HashMap * MatrixCreateReplace(char *event, char *body);

View file

@ -170,4 +170,5 @@ extern char * ParseeXMPPify(HashMap *event);
/* Finds an event ID from an ID in the stanza's attributes */
extern char * ParseeEventFromID(ParseeData *d, char *c_id, char *ori_id);
extern char * ParseeEventFromSID(ParseeData *d, char *c_id, char *ori_id);
#endif