comparison libpurple/protocols/msn/object.h @ 23142:dea8b856466e

propagate from branch 'im.pidgin.pidgin.custom_smiley' (head c134ff23eba5faac09c13e731e792fa612c91a9a) to branch 'im.pidgin.pidgin.next.minor' (head 4d2d20241c7dac5915e142f0aa9811c9eab40111)
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 12 May 2008 23:17:48 +0000
parents b65997110933
children 462cb893521b
comparison
equal deleted inserted replaced
23114:d53f72735830 23142:dea8b856466e
69 * @return The new MsnObject structure. 69 * @return The new MsnObject structure.
70 */ 70 */
71 MsnObject *msn_object_new_from_string(const char *str); 71 MsnObject *msn_object_new_from_string(const char *str);
72 72
73 /** 73 /**
74 * Creates a MsnObject structure from a stored image
75 *
76 * @param img The image associated to object
77 * @param location The object location as stored in MsnObject
78 * @param creator The creator of the object
79 * @param type The type of the object
80 *
81 * @return A new MsnObject structure
82 */
83 MsnObject *msn_object_new_from_image(PurpleStoredImage *img,
84 const char *location, const char *creator, MsnObjectType type);
85
86 /**
74 * Destroys an MsnObject structure. 87 * Destroys an MsnObject structure.
75 * 88 *
76 * @param obj The object structure. 89 * @param obj The object structure.
77 */ 90 */
78 void msn_object_destroy(MsnObject *obj); 91 void msn_object_destroy(MsnObject *obj);