| 116 GAIM_MESSAGE_NICK = 0x0020, /**< Contains your nick. */ |
116 GAIM_MESSAGE_NICK = 0x0020, /**< Contains your nick. */ |
| 117 GAIM_MESSAGE_NO_LOG = 0x0040, /**< Do not log. */ |
117 GAIM_MESSAGE_NO_LOG = 0x0040, /**< Do not log. */ |
| 118 GAIM_MESSAGE_WHISPER = 0x0080, /**< Whispered message. */ |
118 GAIM_MESSAGE_WHISPER = 0x0080, /**< Whispered message. */ |
| 119 GAIM_MESSAGE_ERROR = 0x0200, /**< Error message. */ |
119 GAIM_MESSAGE_ERROR = 0x0200, /**< Error message. */ |
| 120 GAIM_MESSAGE_DELAYED = 0x0400 /**< Delayed message. */ |
120 GAIM_MESSAGE_DELAYED = 0x0400 /**< Delayed message. */ |
| |
121 |
| 121 } GaimMessageFlags; |
122 } GaimMessageFlags; |
| 122 |
123 |
| 123 /** |
124 /** |
| 124 * Flags applicable to users in Chats. |
125 * Flags applicable to users in Chats. |
| 125 */ |
126 */ |
| 128 GAIM_CBFLAGS_NONE = 0x0000, /**< No flags */ |
129 GAIM_CBFLAGS_NONE = 0x0000, /**< No flags */ |
| 129 GAIM_CBFLAGS_VOICE = 0x0001, /**< Voiced user or "Participant" */ |
130 GAIM_CBFLAGS_VOICE = 0x0001, /**< Voiced user or "Participant" */ |
| 130 GAIM_CBFLAGS_HALFOP = 0x0002, /**< Half-op */ |
131 GAIM_CBFLAGS_HALFOP = 0x0002, /**< Half-op */ |
| 131 GAIM_CBFLAGS_OP = 0x0004, /**< Channel Op or Moderator */ |
132 GAIM_CBFLAGS_OP = 0x0004, /**< Channel Op or Moderator */ |
| 132 GAIM_CBFLAGS_FOUNDER = 0x0008 /**< Channel Founder */ |
133 GAIM_CBFLAGS_FOUNDER = 0x0008 /**< Channel Founder */ |
| |
134 |
| 133 } GaimConvChatBuddyFlags; |
135 } GaimConvChatBuddyFlags; |
| 134 |
136 |
| 135 #include "account.h" |
137 #include "account.h" |
| 136 #include "buddyicon.h" |
138 #include "buddyicon.h" |
| 137 #include "log.h" |
139 #include "log.h" |