comparison 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
comparison
equal deleted inserted replaced
22879:01e181575f27 22880:2ab289f312d0
33 33
34 34
35 /**************************************************************************/ 35 /**************************************************************************/
36 /* Main structures, members and constants */ 36 /* Main structures, members and constants */
37 /**************************************************************************/ 37 /**************************************************************************/
38
39 struct _PurpleSmiley
40 {
41 PurpleStoredImage *img; /**< The id of the stored image with the
42 the smiley data. */
43 char *shortcut; /**< Shortcut associated with the custom
44 smiley. This field will work as a
45 unique key by this API. */
46 char *checksum; /**< The smiley checksum. */
47 };
38 48
39 static GHashTable *smiley_data_index = NULL; 49 static GHashTable *smiley_data_index = NULL;
40 static GHashTable *smiley_shortcut_index = NULL; 50 static GHashTable *smiley_shortcut_index = NULL;
41 static GHashTable *smiley_checksum_index = NULL; 51 static GHashTable *smiley_checksum_index = NULL;
42 52