mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
16 lines
424 B
C
16 lines
424 B
C
#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);
|
|
|
|
void prof_send(char *msg, xmpp_ctx_t *ctx, xmpp_conn_t *conn);
|
|
|
|
#endif
|