blob: 4f2d8c18eb984a8e72ea4dca6d3239b295785a84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef LIMOX_H
#define LIMOX_H
// life cycle / event loop related functions
void limox_init(void); // initialize limox
void limox_run_once(void); // process event loop for a short amount of time
void limox_quit(void); // disconnect and clean up
// interface for the GUI implementation
void limox_connect(const char* jid, const char* password);
void limox_disconnect(void);
#endif
|