comparison src/notify.h @ 11531:bf763a1b2454

[gaim-migrate @ 13780] (13:57:11) rlaager: LSchiere2: Should we just change gaim_notify_userinfo to take a screenname and eliminate all the duplication of "Buddy Information" and "Info for %s"? (13:57:18) LSchiere2: sounds good This breaks perl, I could not figure out how to fix that. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 12 Sep 2005 18:46:15 +0000
parents 9563b768e8e2
children c9b815aeddc1
comparison
equal deleted inserted replaced
11530:2a13cfe607b5 11531:bf763a1b2454
360 * The text is essentially a stripped-down format of HTML, the same that 360 * The text is essentially a stripped-down format of HTML, the same that
361 * IMs may send. 361 * IMs may send.
362 * 362 *
363 * @param gc The GaimConnection handle associated with the information. 363 * @param gc The GaimConnection handle associated with the information.
364 * @param who The username associated with the information. 364 * @param who The username associated with the information.
365 * @param title The title of the message.
366 * @param primary The main point of the message. 365 * @param primary The main point of the message.
367 * @param secondary The secondary information. 366 * @param secondary The secondary information.
368 * @param text The formatted text. 367 * @param text The formatted text.
369 * @param cb The callback to call when the user closes 368 * @param cb The callback to call when the user closes
370 * the notification. 369 * the notification.
371 * @param user_data The data to pass to the callback. 370 * @param user_data The data to pass to the callback.
372 * 371 *
373 * @return A UI-specific handle. 372 * @return A UI-specific handle.
374 */ 373 */
375 void *gaim_notify_userinfo(GaimConnection *gc, const char *who, 374 void *gaim_notify_userinfo(GaimConnection *gc, const char *who,
376 const char *title, const char *primary, 375 const char *primary, const char *secondary,
377 const char *secondary, const char *text, 376 const char *text, GCallback cb,
378 GCallback cb, void *user_data); 377 void *user_data);
379 378
380 /** 379 /**
381 * Opens a URI or somehow presents it to the user. 380 * Opens a URI or somehow presents it to the user.
382 * 381 *
383 * @param handle The plugin or connection handle. 382 * @param handle The plugin or connection handle.