| 182 #define purple_strlcpy(dest, src) g_strlcpy(dest, src, sizeof(dest)) |
182 #define purple_strlcpy(dest, src) g_strlcpy(dest, src, sizeof(dest)) |
| 183 #define purple_strlcat(dest, src) g_strlcat(dest, src, sizeof(dest)) |
183 #define purple_strlcat(dest, src) g_strlcat(dest, src, sizeof(dest)) |
| 184 |
184 |
| 185 #define PURPLE_WEBSITE "http://pidgin.im/" |
185 #define PURPLE_WEBSITE "http://pidgin.im/" |
| 186 |
186 |
| |
187 /* This is for the accounts code to notify the buddy icon code that |
| |
188 * it's done loading. We may want to replace this with a signal. */ |
| |
189 void |
| |
190 purple_buddy_icons_account_loaded_cb(void); |
| |
191 |
| 187 /* This is for the buddy list to notify the buddy icon code that |
192 /* This is for the buddy list to notify the buddy icon code that |
| 188 * it's done loading. We may want to replace this with a signal. */ |
193 * it's done loading. We may want to replace this with a signal. */ |
| 189 void |
194 void |
| 190 purple_buddy_icons_blist_loaded_cb(void); |
195 purple_buddy_icons_blist_loaded_cb(void); |
| 191 |
196 |