diff libpurple/smiley.c @ 22880:2ab289f312d0

Hide PurpleSmiley internals.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 25 Feb 2008 02:43:06 +0000
parents 76fa93017695
children d1bcb54920f8
line wrap: on
line diff
--- a/libpurple/smiley.c	Tue Feb 19 20:02:14 2008 +0000
+++ b/libpurple/smiley.c	Mon Feb 25 02:43:06 2008 +0000
@@ -36,6 +36,16 @@
 /* Main structures, members and constants                                 */
 /**************************************************************************/
 
+struct _PurpleSmiley
+{
+        PurpleStoredImage *img;        /**< The id of the stored image with the
+                                        the smiley data.        */
+        char *shortcut;                /**< Shortcut associated with the custom
+                                        smiley. This field will work as a
+                                        unique key by this API. */
+        char *checksum;                /**< The smiley checksum.        */
+};
+
 static GHashTable *smiley_data_index = NULL;
 static GHashTable *smiley_shortcut_index = NULL;
 static GHashTable *smiley_checksum_index = NULL;