Fri, 04 Apr 2014 20:30:07 +0200
Remote smileys: display them even on the first time
| 35715 | 1 | /* purple |
| 2 | * | |
| 3 | * Purple is the legal property of its developers, whose names are too numerous | |
| 4 | * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 5 | * source distribution. | |
| 6 | * | |
| 7 | * This program is free software; you can redistribute it and/or modify | |
| 8 | * it under the terms of the GNU General Public License as published by | |
| 9 | * the Free Software Foundation; either version 2 of the License, or | |
| 10 | * (at your option) any later version. | |
| 11 | * | |
| 12 | * This program is distributed in the hope that it will be useful, | |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 | * GNU General Public License for more details. | |
| 16 | * | |
| 17 | * You should have received a copy of the GNU General Public License | |
| 18 | * along with this program; if not, write to the Free Software | |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA | |
| 20 | */ | |
| 21 | ||
| 22 | #ifndef _PURPLE_SMILEY_CUSTOM_H_ | |
| 23 | #define _PURPLE_SMILEY_CUSTOM_H_ | |
| 24 | ||
| 25 | #include "smiley.h" | |
|
35717
45bde03f86a6
Custom smileys: simplify storage implementation
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
35715
diff
changeset
|
26 | #include "smiley-list.h" |
| 35715 | 27 | |
| 28 | PurpleSmiley * | |
| 29 | purple_smiley_custom_add(PurpleStoredImage *img, const gchar *shortcut); | |
| 30 | ||
| 31 | void | |
| 32 | purple_smiley_custom_remove(PurpleSmiley *smiley); | |
| 33 | ||
|
35717
45bde03f86a6
Custom smileys: simplify storage implementation
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
35715
diff
changeset
|
34 | PurpleSmileyList * |
|
45bde03f86a6
Custom smileys: simplify storage implementation
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
35715
diff
changeset
|
35 | purple_smiley_custom_get_list(void); |
| 35715 | 36 | |
| 37 | void | |
| 38 | purple_smiley_custom_init(void); | |
| 39 | ||
| 40 | void | |
| 41 | purple_smiley_custom_uninit(void); | |
| 42 | ||
| 43 | #endif /* _PURPLE_SMILEY_CUSTOM_H_ */ |