mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
16 lines
334 B
C
16 lines
334 B
C
#ifndef JABBER_H
|
|
#define JABBER_H
|
|
|
|
#define CONNECTING 0
|
|
#define CONNECTED 1
|
|
#define DISCONNECTED 2
|
|
|
|
int jabber_connection_status(void);
|
|
int jabber_connect(char *user, char *passwd);
|
|
void jabber_disconnect(void);
|
|
void jabber_roster_request(void);
|
|
void jabber_process_events(void);
|
|
void jabber_send(char *msg, char *recipient);
|
|
|
|
#endif
|