| 28 |
28 |
| 29 typedef struct _GaimConnection GaimConnection; |
29 typedef struct _GaimConnection GaimConnection; |
| 30 |
30 |
| 31 #include "account.h" |
31 #include "account.h" |
| 32 #include "plugin.h" |
32 #include "plugin.h" |
| |
33 |
| |
34 #define OPT_CONN_HTML 0x00000001 |
| |
35 /* set this flag on a gc if you want serv_got_im to autoreply when away */ |
| |
36 #define OPT_CONN_AUTO_RESP 0x00000002 |
| 33 |
37 |
| 34 typedef enum |
38 typedef enum |
| 35 { |
39 { |
| 36 GAIM_DISCONNECTED = 0, /**< Disconnected. */ |
40 GAIM_DISCONNECTED = 0, /**< Disconnected. */ |
| 37 GAIM_CONNECTED, /**< Connected. */ |
41 GAIM_CONNECTED, /**< Connected. */ |