| 227 * g_strlcpy/g_strlcpy directly. */ |
227 * g_strlcpy/g_strlcpy directly. */ |
| 228 #define purple_strlcpy(dest, src) g_strlcpy(dest, src, sizeof(dest)) |
228 #define purple_strlcpy(dest, src) g_strlcpy(dest, src, sizeof(dest)) |
| 229 #define purple_strlcat(dest, src) g_strlcat(dest, src, sizeof(dest)) |
229 #define purple_strlcat(dest, src) g_strlcat(dest, src, sizeof(dest)) |
| 230 |
230 |
| 231 #define PURPLE_WEBSITE "http://pidgin.im/" |
231 #define PURPLE_WEBSITE "http://pidgin.im/" |
| |
232 #ifndef CLIENT_WEBSITE |
| |
233 #define CLIENT_WEBSITE PURPLE_WEBSITE |
| |
234 #endif |
| 232 #define PURPLE_DEVEL_WEBSITE "http://developer.pidgin.im/" |
235 #define PURPLE_DEVEL_WEBSITE "http://developer.pidgin.im/" |
| 233 |
236 |
| 234 /* This is for the accounts code to notify the buddy icon code that |
237 /* This is for the accounts code to notify the buddy icon code that |
| 235 * it's done loading. We may want to replace this with a signal. */ |
238 * it's done loading. We may want to replace this with a signal. */ |
| 236 void |
239 void |