| 42 */ |
42 */ |
| 43 enum _GaimConversationType |
43 enum _GaimConversationType |
| 44 { |
44 { |
| 45 GAIM_CONV_UNKNOWN = 0, /**< Unknown conversation type. */ |
45 GAIM_CONV_UNKNOWN = 0, /**< Unknown conversation type. */ |
| 46 GAIM_CONV_IM, /**< Instant Message. */ |
46 GAIM_CONV_IM, /**< Instant Message. */ |
| 47 GAIM_CONV_CHAT /**< Chat room. */ |
47 GAIM_CONV_CHAT, /**< Chat room. */ |
| |
48 GAIM_CONV_MISC /**< A misc. conversation. */ |
| 48 }; |
49 }; |
| 49 |
50 |
| 50 /** |
51 /** |
| 51 * Unseen text states. |
52 * Unseen text states. |
| 52 */ |
53 */ |
| 75 |
76 |
| 76 /* |
77 /* |
| 77 * XXX These need to go when we implement a more generic core/UI event |
78 * XXX These need to go when we implement a more generic core/UI event |
| 78 * system. |
79 * system. |
| 79 */ |
80 */ |
| 80 GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */ |
81 GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */ |
| 81 GAIM_CONV_ACCOUNT_OFFLINE /**< One of the user's accounts went offline. */ |
82 GAIM_CONV_ACCOUNT_OFFLINE, /**< One of the user's accounts went offline. */ |
| |
83 GAIM_CONV_UPDATE_AWAY /**< The other user went away. */ |
| 82 }; |
84 }; |
| 83 |
85 |
| 84 /* Yeah, this has to be included here. Ugh. */ |
86 /* Yeah, this has to be included here. Ugh. */ |
| 85 #include "gaim.h" |
87 #include "gaim.h" |
| 86 |
88 |