1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00
profanity/jabber.h

16 lines
424 B
C
Raw Normal View History

2012-02-05 18:29:09 -05:00
#ifndef JABBER_H
#define JABBER_H
#include <strophe/strophe.h>
int in_message_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
void * const userdata);
void conn_handler(xmpp_conn_t * const conn, const xmpp_conn_event_t status,
const int error, xmpp_stream_error_t * const stream_error,
void * const userdata);
2012-02-05 18:38:35 -05:00
void prof_send(char *msg, xmpp_ctx_t *ctx, xmpp_conn_t *conn);
2012-02-05 18:29:09 -05:00
#endif