comparison libpurple/internal.h @ 16373:c9b4ff420140

The buddy icon code as it stands, with lots of bugs and design flaws.
author Richard Laager <rlaager@wiktel.com>
date Mon, 23 Apr 2007 17:39:58 +0000
parents 634b96915d2e
children 1d1ddf972ac8
comparison
equal deleted inserted replaced
16372:bb08332c7456 16373:c9b4ff420140
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 buddy list 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_blist_loaded_cb(void);
191
192 /* This is for the purple_core_migrate() code to tell the buddy
193 * icon subsystem about the old icons directory so it can
194 * migrate any icons in use. */
195 void
196 purple_buddy_icon_set_old_icons_dir(const char *dirname);
197
187 #endif /* _PURPLE_INTERNAL_H_ */ 198 #endif /* _PURPLE_INTERNAL_H_ */