Mon, 18 Feb 2013 23:44:29 -0500
Fix various "Dereference before null check" issues
* Nothing problematic, just unnecessary NULL checks
| 6982 | 1 | /** |
| 2 | * @file imgstore.h IM Image Store API | |
| 3 | * @ingroup core | |
|
20889
3d0ef192f98c
All the links to libpurple signal pages were in the comment containing the
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
4 | * @see @ref imgstore-signals |
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
5 | */ |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
6 | |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
7 | /* purple |
| 6982 | 8 | * |
| 15884 | 9 | * Purple is the legal property of its developers, whose names are too numerous |
| 8046 | 10 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 11 | * source distribution. | |
| 6982 | 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify | |
| 14 | * it under the terms of the GNU General Public License as published by | |
| 15 | * the Free Software Foundation; either version 2 of the License, or | |
| 16 | * (at your option) any later version. | |
| 17 | * | |
| 18 | * This program is distributed in the hope that it will be useful, | |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 21 | * GNU General Public License for more details. | |
| 22 | * | |
| 23 | * You should have received a copy of the GNU General Public License | |
| 24 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
18412
diff
changeset
|
25 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 6982 | 26 | */ |
| 15884 | 27 | #ifndef _PURPLE_IMGSTORE_H_ |
| 28 | #define _PURPLE_IMGSTORE_H_ | |
| 6982 | 29 | |
|
16538
c7e61e2917c9
Updates for the account buddy icon stuff. This doesn't yet work fully (and maybe not even partly), but it compiles.
Richard Laager <rlaager@pidgin.im>
parents:
16437
diff
changeset
|
30 | #include <glib.h> |
|
c7e61e2917c9
Updates for the account buddy icon stuff. This doesn't yet work fully (and maybe not even partly), but it compiles.
Richard Laager <rlaager@pidgin.im>
parents:
16437
diff
changeset
|
31 | |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
32 | /** |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
33 | * A set of utility functions that provide a reference-counted immutable |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
34 | * wrapper around an image's data and filename. These functions do not |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
35 | * cache any data to disk. |
|
22613
1077236bf4fb
Add docs to PurpleStoredImage so that doxygen links to it show up
Will Thompson <resiak@pidgin.im>
parents:
20889
diff
changeset
|
36 | */ |
| 15884 | 37 | typedef struct _PurpleStoredImage PurpleStoredImage; |
| 6982 | 38 | |
| 39 | #ifdef __cplusplus | |
| 40 | extern "C" { | |
| 41 | #endif | |
| 42 | ||
| 43 | /** | |
| 33656 | 44 | * Create a new PurpleStoredImage. |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
45 | * |
| 33656 | 46 | * Despite the name of this function, the image is NOT added to the image |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
47 | * store and no ID is assigned. If you need to reference the image by an |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
48 | * ID, use purple_imgstore_add_with_id() instead. |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
49 | * |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
50 | * The caller owns a reference to this image and must dereference it with |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
51 | * purple_imgstore_unref() for it to be freed. |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
52 | * |
|
33654
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
53 | * @param data Pointer to the image data, which the imgstore will take |
|
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
54 | * ownership of and free as appropriate. If you want a |
|
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
55 | * copy of the data, make it before calling this function. |
|
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
56 | * @param size Image data's size. |
|
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
57 | * @param filename Filename associated with image. This is for your |
|
22763
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
58 | * convenience. It could be the full path to the |
|
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
59 | * image or, more commonly, the filename of the image |
|
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
60 | * without any directory information. It can also be |
|
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
61 | * NULL, if you don't need to keep track of a filename. |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
62 | * |
| 33656 | 63 | * @return The stored image, or NULL if the image was not added (because of |
| 64 | * empty data or size). | |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
65 | */ |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
66 | PurpleStoredImage * |
|
16539
75a20ae3a527
Change the imgstore and by extension, then the buddy icon code to take over
Richard Laager <rlaager@pidgin.im>
parents:
16538
diff
changeset
|
67 | purple_imgstore_add(gpointer data, size_t size, const char *filename); |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
68 | |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
69 | /** |
| 33656 | 70 | * Create a PurpleStoredImage using purple_imgstore_add() by reading the |
| 71 | * given filename from disk. | |
| 72 | * | |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
73 | * The image is not added to the image store and no ID is assigned. If you |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
74 | * need to reference the image by an ID, use purple_imgstore_add_with_id() |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
75 | * instead. |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
76 | * |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
77 | * The caller owns a reference to this image and must dereference it with |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
78 | * purple_imgstore_unref() for it to be freed. |
|
22652
ba50c2bc1adc
Make it simple to create a stored-image from a filename.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20889
diff
changeset
|
79 | * |
|
ba50c2bc1adc
Make it simple to create a stored-image from a filename.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20889
diff
changeset
|
80 | * @param path The path to the image. |
|
ba50c2bc1adc
Make it simple to create a stored-image from a filename.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20889
diff
changeset
|
81 | * |
| 33656 | 82 | * @return The stored image, or NULL if the image was not added (because of |
| 83 | * empty data or size). | |
| 84 | * | |
| 85 | * @since 2.5.0 | |
|
22652
ba50c2bc1adc
Make it simple to create a stored-image from a filename.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20889
diff
changeset
|
86 | */ |
|
ba50c2bc1adc
Make it simple to create a stored-image from a filename.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20889
diff
changeset
|
87 | PurpleStoredImage * |
|
ba50c2bc1adc
Make it simple to create a stored-image from a filename.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20889
diff
changeset
|
88 | purple_imgstore_new_from_file(const char *path); |
|
ba50c2bc1adc
Make it simple to create a stored-image from a filename.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20889
diff
changeset
|
89 | |
|
ba50c2bc1adc
Make it simple to create a stored-image from a filename.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20889
diff
changeset
|
90 | /** |
| 33656 | 91 | * Create a PurpleStoredImage using purple_imgstore_add() and add the |
| 92 | * image to the image store. A unique ID will be assigned to the image. | |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
93 | * |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
94 | * The caller owns a reference to the image and must dereference it with |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
95 | * purple_imgstore_unref() or purple_imgstore_unref_by_id() for it to be |
|
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
96 | * freed. |
| 6982 | 97 | * |
|
33654
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
98 | * @param data Pointer to the image data, which the imgstore will take |
|
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
99 | * ownership of and free as appropriate. If you want a |
|
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
100 | * copy of the data, make it before calling this function. |
|
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
101 | * @param size Image data's size. |
|
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
102 | * @param filename Filename associated with image. This is for your |
|
22763
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
103 | * convenience. It could be the full path to the |
|
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
104 | * image or, more commonly, the filename of the image |
|
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
105 | * without any directory information. It can also be |
|
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
106 | * NULL, if you don't need to keep track of a filename. |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
107 | * |
|
22763
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
108 | * @return ID for the image. This is a unique number that can be used |
|
33655
732c94e8b7ec
Document the error condition.
Mark Doliner <mark@kingant.net>
parents:
33654
diff
changeset
|
109 | * within libpurple to reference the image. 0 is returned if the |
|
732c94e8b7ec
Document the error condition.
Mark Doliner <mark@kingant.net>
parents:
33654
diff
changeset
|
110 | * image was not added (because of empty data or size). |
| 6982 | 111 | */ |
|
16539
75a20ae3a527
Change the imgstore and by extension, then the buddy icon code to take over
Richard Laager <rlaager@pidgin.im>
parents:
16538
diff
changeset
|
112 | int purple_imgstore_add_with_id(gpointer data, size_t size, const char *filename); |
| 6982 | 113 | |
| 114 | /** | |
| 115 | * Retrieve an image from the store. The caller does not own a | |
| 116 | * reference to the image. | |
| 117 | * | |
|
33654
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
118 | * @param id The ID for the image. |
| 6982 | 119 | * |
| 120 | * @return A pointer to the requested image, or NULL if it was not found. | |
| 121 | */ | |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
122 | PurpleStoredImage *purple_imgstore_find_by_id(int id); |
| 6982 | 123 | |
| 124 | /** | |
| 8962 | 125 | * Retrieves a pointer to the image's data. |
| 126 | * | |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
127 | * @param img The Image. |
| 8962 | 128 | * |
| 129 | * @return A pointer to the data, which must not | |
| 130 | * be freed or modified. | |
| 131 | */ | |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
132 | gconstpointer purple_imgstore_get_data(PurpleStoredImage *img); |
| 8962 | 133 | |
| 134 | /** | |
| 135 | * Retrieves the length of the image's data. | |
| 136 | * | |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
137 | * @param img The Image. |
| 8962 | 138 | * |
| 139 | * @return The size of the data that the pointer returned by | |
| 15884 | 140 | * purple_imgstore_get_data points to. |
| 8962 | 141 | */ |
|
16599
43f9ca8adbef
Fix the name of the parameter for purple_imgstore_get_size() so that Doxygen will stop crying.
Richard Laager <rlaager@pidgin.im>
parents:
16539
diff
changeset
|
142 | size_t purple_imgstore_get_size(PurpleStoredImage *img); |
| 8962 | 143 | |
| 144 | /** | |
| 145 | * Retrieves a pointer to the image's filename. | |
| 146 | * | |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
147 | * @param img The image. |
| 8962 | 148 | * |
| 149 | * @return A pointer to the filename, which must not | |
| 150 | * be freed or modified. | |
| 151 | */ | |
|
16775
8627d2560d40
Get rid of two harmless warnings:
Mark Doliner <markdoliner@pidgin.im>
parents:
16599
diff
changeset
|
152 | const char *purple_imgstore_get_filename(const PurpleStoredImage *img); |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
153 | |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
154 | /** |
|
22763
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
155 | * Looks at the magic numbers of the image data (the first few bytes) |
|
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
156 | * and returns an extension corresponding to the image's file type. |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
157 | * |
|
33658
bf6e40d37a72
Ever better documentation!
Mark Doliner <mark@kingant.net>
parents:
33656
diff
changeset
|
158 | * @param img The image. |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
159 | * |
|
22763
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
160 | * @return The image's extension (for example "png") or "icon" |
|
6e4bbebdf127
Better documentation.
Mark Doliner <markdoliner@pidgin.im>
parents:
22613
diff
changeset
|
161 | * if unknown. |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
162 | */ |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
163 | const char *purple_imgstore_get_extension(PurpleStoredImage *img); |
| 8962 | 164 | |
| 165 | /** | |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
166 | * Increment the reference count. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
167 | * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
168 | * @param img The image. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
169 | * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
170 | * @return @a img |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
171 | */ |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
172 | PurpleStoredImage * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
173 | purple_imgstore_ref(PurpleStoredImage *img); |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
174 | |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
175 | /** |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
176 | * Decrement the reference count. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
177 | * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
178 | * If the reference count reaches zero, the image will be freed. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
179 | * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
180 | * @param img The image. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
181 | * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
182 | * @return @a img or @c NULL if the reference count reached zero. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
183 | */ |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
184 | PurpleStoredImage * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
185 | purple_imgstore_unref(PurpleStoredImage *img); |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
186 | |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
187 | /** |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
188 | * Increment the reference count using an ID. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
189 | * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
190 | * This is a convience wrapper for purple_imgstore_find_by_id() and |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
191 | * purple_imgstore_ref(), so if you have a PurpleStoredImage, it'll |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
192 | * be more efficient to call purple_imgstore_ref() directly. |
| 6982 | 193 | * |
|
33654
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
194 | * @param id The ID for the image. |
| 6982 | 195 | */ |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
196 | void purple_imgstore_ref_by_id(int id); |
| 6982 | 197 | |
| 198 | /** | |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
199 | * Decrement the reference count using an ID. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
200 | * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
201 | * This is a convience wrapper for purple_imgstore_find_by_id() and |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
202 | * purple_imgstore_unref(), so if you have a PurpleStoredImage, it'll |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
203 | * be more efficient to call purple_imgstore_unref() directly. |
| 6982 | 204 | * |
|
33654
cf6979b92221
Spaces instead of tabs in doxygen comments.
Mark Doliner <mark@kingant.net>
parents:
22895
diff
changeset
|
205 | * @param id The ID for the image. |
| 6982 | 206 | */ |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
207 | void purple_imgstore_unref_by_id(int id); |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
208 | |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
209 | /** |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
210 | * Returns the image store subsystem handle. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
211 | * |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
212 | * @return The subsystem handle. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
213 | */ |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
214 | void *purple_imgstore_get_handle(void); |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
215 | |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
216 | /** |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
217 | * Initializes the image store subsystem. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
218 | */ |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
219 | void purple_imgstore_init(void); |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
220 | |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
221 | /** |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
222 | * Uninitializes the image store subsystem. |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
223 | */ |
|
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
224 | void purple_imgstore_uninit(void); |
| 6982 | 225 | |
| 226 | #ifdef __cplusplus | |
| 227 | } | |
| 228 | #endif | |
| 229 | ||
| 15884 | 230 | #endif /* _PURPLE_IMGSTORE_H_ */ |