Sun, 16 Sep 2007 01:05:22 +0000
remove gpl boilerplate from doxygen docs
| 6485 | 1 | /** |
|
6488
6a47a95e4dbb
[gaim-migrate @ 7002]
Christian Hammond <chipx86@chipx86.com>
parents:
6485
diff
changeset
|
2 | * @file signals.h Signal API |
| 6485 | 3 | * @ingroup core |
|
20330
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
19859
diff
changeset
|
4 | */ |
|
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
19859
diff
changeset
|
5 | |
|
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
19859
diff
changeset
|
6 | /* purple |
| 6485 | 7 | * |
| 15884 | 8 | * Purple is the legal property of its developers, whose names are too numerous |
| 8046 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
| 6485 | 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify | |
| 13 | * it under the terms of the GNU General Public License as published by | |
| 14 | * the Free Software Foundation; either version 2 of the License, or | |
| 15 | * (at your option) any later version. | |
| 16 | * | |
| 17 | * This program is distributed in the hope that it will be useful, | |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 | * GNU General Public License for more details. | |
| 21 | * | |
| 22 | * You should have received a copy of the GNU General Public License | |
| 23 | * 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:
18744
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 6485 | 25 | */ |
| 15884 | 26 | #ifndef _PURPLE_SIGNALS_H_ |
| 27 | #define _PURPLE_SIGNALS_H_ | |
| 6485 | 28 | |
| 29 | #include <glib.h> | |
|
6564
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
30 | #include "value.h" |
| 6485 | 31 | |
| 15884 | 32 | #define PURPLE_CALLBACK(func) ((PurpleCallback)func) |
| 6485 | 33 | |
| 15884 | 34 | typedef void (*PurpleCallback)(void); |
| 35 | typedef void (*PurpleSignalMarshalFunc)(PurpleCallback cb, va_list args, | |
| 6485 | 36 | void *data, void **return_val); |
| 37 | ||
| 38 | #ifdef __cplusplus | |
| 39 | extern "C" { | |
| 40 | #endif | |
| 41 | ||
| 42 | /**************************************************************************/ | |
| 43 | /** @name Signal API */ | |
| 44 | /**************************************************************************/ | |
| 45 | /*@{*/ | |
| 46 | ||
| 47 | /** | |
| 10656 | 48 | * Signal Connect Priorities |
| 49 | */ | |
| 15884 | 50 | #define PURPLE_SIGNAL_PRIORITY_DEFAULT 0 |
| 51 | #define PURPLE_SIGNAL_PRIORITY_HIGHEST 9999 | |
| 52 | #define PURPLE_SIGNAL_PRIORITY_LOWEST -9999 | |
| 10656 | 53 | |
| 54 | /** | |
| 6485 | 55 | * Registers a signal in an instance. |
| 56 | * | |
|
6720
cdc5348dd848
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
57 | * @param instance The instance to register the signal for. |
|
cdc5348dd848
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
58 | * @param signal The signal name. |
|
cdc5348dd848
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
59 | * @param marshal The marshal function. |
|
cdc5348dd848
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
60 | * @param ret_value The return value type, or NULL for no return value. |
|
cdc5348dd848
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
61 | * @param num_values The number of values to be passed to the callbacks. |
|
cdc5348dd848
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
62 | * @param ... The values to pass to the callbacks. |
| 6485 | 63 | * |
| 64 | * @return The signal ID local to that instance, or 0 if the signal | |
| 65 | * couldn't be registered. | |
|
6564
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
66 | * |
| 15884 | 67 | * @see PurpleValue |
| 6485 | 68 | */ |
| 15884 | 69 | gulong purple_signal_register(void *instance, const char *signal, |
| 70 | PurpleSignalMarshalFunc marshal, | |
| 71 | PurpleValue *ret_value, int num_values, ...); | |
| 6485 | 72 | |
| 73 | /** | |
| 74 | * Unregisters a signal in an instance. | |
| 75 | * | |
| 76 | * @param instance The instance to unregister the signal for. | |
| 77 | * @param signal The signal name. | |
| 78 | */ | |
| 15884 | 79 | void purple_signal_unregister(void *instance, const char *signal); |
| 6485 | 80 | |
| 81 | /** | |
| 82 | * Unregisters all signals in an instance. | |
| 83 | * | |
| 84 | * @param instance The instance to unregister the signal for. | |
| 85 | */ | |
| 15884 | 86 | void purple_signals_unregister_by_instance(void *instance); |
| 6485 | 87 | |
| 88 | /** | |
|
6564
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
89 | * Returns a list of value types used for a signal. |
|
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
90 | * |
|
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
91 | * @param instance The instance the signal is registered to. |
|
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
92 | * @param signal The signal. |
|
6720
cdc5348dd848
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6564
diff
changeset
|
93 | * @param ret_value The return value from the last signal handler. |
|
6564
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
94 | * @param num_values The returned number of values. |
|
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
95 | * @param values The returned list of values. |
|
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
96 | */ |
| 15884 | 97 | void purple_signal_get_values(void *instance, const char *signal, |
| 98 | PurpleValue **ret_value, | |
| 99 | int *num_values, PurpleValue ***values); | |
|
6564
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
100 | |
|
a7a2c1927544
[gaim-migrate @ 7086]
Christian Hammond <chipx86@chipx86.com>
parents:
6562
diff
changeset
|
101 | /** |
| 6485 | 102 | * Connects a signal handler to a signal for a particular object. |
| 103 | * | |
| 15884 | 104 | * Take care not to register a handler function twice. Purple will |
| 6485 | 105 | * not correct any mistakes for you in this area. |
| 106 | * | |
| 107 | * @param instance The instance to connect to. | |
| 108 | * @param signal The name of the signal to connect. | |
| 109 | * @param handle The handle of the receiver. | |
| 110 | * @param func The callback function. | |
| 111 | * @param data The data to pass to the callback function. | |
|
11283
8355630c98d5
[gaim-migrate @ 13480]
Richard Laager <rlaager@pidgin.im>
parents:
11064
diff
changeset
|
112 | * @param priority The priority with which the handler should be called. Signal handlers are called |
| 15884 | 113 | * in order from PURPLE_SIGNAL_PRIORITY_LOWEST to PURPLE_SIGNAL_PRIORITY_HIGHEST. |
| 10656 | 114 | * |
| 115 | * @return The signal handler ID. | |
| 116 | * | |
| 15884 | 117 | * @see purple_signal_disconnect() |
| 10656 | 118 | */ |
| 15884 | 119 | gulong purple_signal_connect_priority(void *instance, const char *signal, |
| 120 | void *handle, PurpleCallback func, void *data, int priority); | |
| 10656 | 121 | |
| 122 | /** | |
| 123 | * Connects a signal handler to a signal for a particular object. | |
| 124 | * (priority defaults to 0) | |
| 125 | * | |
| 15884 | 126 | * Take care not to register a handler function twice. Purple will |
| 10656 | 127 | * not correct any mistakes for you in this area. |
| 128 | * | |
| 129 | * @param instance The instance to connect to. | |
| 130 | * @param signal The name of the signal to connect. | |
| 131 | * @param handle The handle of the receiver. | |
| 132 | * @param func The callback function. | |
| 133 | * @param data The data to pass to the callback function. | |
| 6485 | 134 | * |
| 135 | * @return The signal handler ID. | |
| 136 | * | |
| 15884 | 137 | * @see purple_signal_disconnect() |
| 6485 | 138 | */ |
| 15884 | 139 | gulong purple_signal_connect(void *instance, const char *signal, |
| 140 | void *handle, PurpleCallback func, void *data); | |
| 6485 | 141 | |
| 142 | /** | |
|
6548
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
143 | * Connects a signal handler to a signal for a particular object. |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
144 | * |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
145 | * The signal handler will take a va_args of arguments, instead of |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
146 | * individual arguments. |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
147 | * |
| 15884 | 148 | * Take care not to register a handler function twice. Purple will |
|
6548
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
149 | * not correct any mistakes for you in this area. |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
150 | * |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
151 | * @param instance The instance to connect to. |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
152 | * @param signal The name of the signal to connect. |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
153 | * @param handle The handle of the receiver. |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
154 | * @param func The callback function. |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
155 | * @param data The data to pass to the callback function. |
| 10656 | 156 | * @param priority The order in which the signal should be added to the list |
| 157 | * | |
| 158 | * @return The signal handler ID. | |
| 159 | * | |
| 15884 | 160 | * @see purple_signal_disconnect() |
| 10656 | 161 | */ |
| 15884 | 162 | gulong purple_signal_connect_priority_vargs(void *instance, const char *signal, |
| 163 | void *handle, PurpleCallback func, void *data, int priority); | |
| 10656 | 164 | |
| 165 | /** | |
| 166 | * Connects a signal handler to a signal for a particular object. | |
| 167 | * (priority defaults to 0) | |
| 168 | * The signal handler will take a va_args of arguments, instead of | |
| 169 | * individual arguments. | |
| 170 | * | |
| 15884 | 171 | * Take care not to register a handler function twice. Purple will |
| 10656 | 172 | * not correct any mistakes for you in this area. |
| 173 | * | |
| 174 | * @param instance The instance to connect to. | |
| 175 | * @param signal The name of the signal to connect. | |
| 176 | * @param handle The handle of the receiver. | |
| 177 | * @param func The callback function. | |
| 178 | * @param data The data to pass to the callback function. | |
|
6548
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
179 | * |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
180 | * @return The signal handler ID. |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
181 | * |
| 15884 | 182 | * @see purple_signal_disconnect() |
|
6548
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
183 | */ |
| 15884 | 184 | gulong purple_signal_connect_vargs(void *instance, const char *signal, |
| 185 | void *handle, PurpleCallback func, void *data); | |
|
6548
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
186 | |
|
40da3b90b19f
[gaim-migrate @ 7070]
Christian Hammond <chipx86@chipx86.com>
parents:
6509
diff
changeset
|
187 | /** |
| 6485 | 188 | * Disconnects a signal handler from a signal on an object. |
| 189 | * | |
| 190 | * @param instance The instance to disconnect from. | |
| 191 | * @param signal The name of the signal to disconnect. | |
| 192 | * @param handle The handle of the receiver. | |
| 193 | * @param func The registered function to disconnect. | |
| 194 | * | |
| 15884 | 195 | * @see purple_signal_connect() |
| 6485 | 196 | */ |
| 15884 | 197 | void purple_signal_disconnect(void *instance, const char *signal, |
| 198 | void *handle, PurpleCallback func); | |
| 6485 | 199 | |
| 200 | /** | |
| 201 | * Removes all callbacks associated with a receiver handle. | |
| 202 | * | |
| 203 | * @param handle The receiver handle. | |
| 204 | */ | |
| 15884 | 205 | void purple_signals_disconnect_by_handle(void *handle); |
| 6485 | 206 | |
| 207 | /** | |
| 208 | * Emits a signal. | |
| 209 | * | |
| 210 | * @param instance The instance emitting the signal. | |
| 211 | * @param signal The signal being emitted. | |
| 212 | * | |
| 15884 | 213 | * @see purple_signal_connect() |
| 214 | * @see purple_signal_disconnect() | |
| 6485 | 215 | */ |
| 15884 | 216 | void purple_signal_emit(void *instance, const char *signal, ...); |
| 6485 | 217 | |
| 218 | /** | |
| 219 | * Emits a signal, using a va_list of arguments. | |
| 220 | * | |
| 221 | * @param instance The instance emitting the signal. | |
| 222 | * @param signal The signal being emitted. | |
| 223 | * @param args The arguments list. | |
| 224 | * | |
| 15884 | 225 | * @see purple_signal_connect() |
| 226 | * @see purple_signal_disconnect() | |
| 6485 | 227 | */ |
| 15884 | 228 | void purple_signal_emit_vargs(void *instance, const char *signal, va_list args); |
| 6485 | 229 | |
| 230 | /** | |
|
10789
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
231 | * Emits a signal and returns the first non-NULL return value. |
|
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
232 | * |
|
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
233 | * Further signal handlers are NOT called after a handler returns |
|
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
234 | * something other than NULL. |
| 6485 | 235 | * |
| 236 | * @param instance The instance emitting the signal. | |
| 237 | * @param signal The signal being emitted. | |
| 238 | * | |
|
10789
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
239 | * @return The first non-NULL return value |
| 6485 | 240 | */ |
| 15884 | 241 | void *purple_signal_emit_return_1(void *instance, const char *signal, ...); |
| 6485 | 242 | |
| 243 | /** | |
|
10789
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
244 | * Emits a signal and returns the first non-NULL return value. |
|
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
245 | * |
|
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
246 | * Further signal handlers are NOT called after a handler returns |
|
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
247 | * something other than NULL. |
| 6485 | 248 | * |
| 249 | * @param instance The instance emitting the signal. | |
| 250 | * @param signal The signal being emitted. | |
| 251 | * @param args The arguments list. | |
| 252 | * | |
|
10789
cabd145237d8
[gaim-migrate @ 12431]
Richard Laager <rlaager@pidgin.im>
parents:
10656
diff
changeset
|
253 | * @return The first non-NULL return value |
| 6485 | 254 | */ |
| 15884 | 255 | void *purple_signal_emit_vargs_return_1(void *instance, const char *signal, |
| 6485 | 256 | va_list args); |
| 257 | ||
| 258 | /** | |
| 259 | * Initializes the signals subsystem. | |
| 260 | */ | |
| 15884 | 261 | void purple_signals_init(void); |
| 6485 | 262 | |
| 263 | /** | |
| 264 | * Uninitializes the signals subsystem. | |
| 265 | */ | |
| 15884 | 266 | void purple_signals_uninit(void); |
| 6485 | 267 | |
| 268 | /*@}*/ | |
| 269 | ||
| 270 | /**************************************************************************/ | |
| 271 | /** @name Marshal Functions */ | |
| 272 | /**************************************************************************/ | |
| 273 | /*@{*/ | |
| 274 | ||
| 15884 | 275 | void purple_marshal_VOID( |
| 276 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 277 | void purple_marshal_VOID__INT( | |
| 278 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 279 | void purple_marshal_VOID__INT_INT( | |
| 280 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 281 | void purple_marshal_VOID__POINTER( | |
| 282 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 283 | void purple_marshal_VOID__POINTER_UINT( | |
| 284 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 285 | void purple_marshal_VOID__POINTER_INT_INT( | |
| 286 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 287 | void purple_marshal_VOID__POINTER_POINTER( | |
| 288 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 289 | void purple_marshal_VOID__POINTER_POINTER_UINT( | |
| 290 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 291 | void purple_marshal_VOID__POINTER_POINTER_UINT_UINT( | |
| 292 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 293 | void purple_marshal_VOID__POINTER_POINTER_POINTER( | |
| 294 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 295 | void purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER( | |
| 296 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 297 | void purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_POINTER( | |
| 298 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 299 | void purple_marshal_VOID__POINTER_POINTER_POINTER_UINT( | |
| 300 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 301 | void purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_UINT( | |
| 302 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 303 | void purple_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT( | |
| 304 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 6485 | 305 | |
| 15884 | 306 | void purple_marshal_INT__INT( |
| 307 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 308 | void purple_marshal_INT__INT_INT( | |
| 309 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 310 | void purple_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER( | |
| 311 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
|
6822
4adcde13ad17
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
312 | |
| 15884 | 313 | void purple_marshal_BOOLEAN__POINTER( |
| 314 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 315 | void purple_marshal_BOOLEAN__POINTER_POINTER( | |
| 316 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 317 | void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER( | |
| 318 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 319 | void purple_marshal_BOOLEAN__POINTER_POINTER_UINT( | |
| 320 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 321 | void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_UINT( | |
| 322 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 323 | void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER( | |
| 324 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 325 | void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER( | |
| 326 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
|
18744
e6b4c7abe951
Fix up writing-im-msg and writing-chat-msg to use a marshaller which treats the
Will Thompson <resiak@pidgin.im>
parents:
15884
diff
changeset
|
327 | void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_UINT( |
|
e6b4c7abe951
Fix up writing-im-msg and writing-chat-msg to use a marshaller which treats the
Will Thompson <resiak@pidgin.im>
parents:
15884
diff
changeset
|
328 | PurpleCallback cb, va_list args, void *data, void **return_val); |
| 6485 | 329 | |
| 15884 | 330 | void purple_marshal_BOOLEAN__INT_POINTER( |
| 331 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 12291 | 332 | |
| 15884 | 333 | void purple_marshal_POINTER__POINTER_INT( |
| 334 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 335 | void purple_marshal_POINTER__POINTER_INT64( | |
| 336 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 337 | void purple_marshal_POINTER__POINTER_INT_BOOLEAN( | |
| 338 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 339 | void purple_marshal_POINTER__POINTER_INT64_BOOLEAN( | |
| 340 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 341 | void purple_marshal_POINTER__POINTER_POINTER( | |
| 342 | PurpleCallback cb, va_list args, void *data, void **return_val); | |
| 6485 | 343 | /*@}*/ |
| 344 | ||
| 345 | #ifdef __cplusplus | |
| 346 | } | |
| 347 | #endif | |
| 348 | ||
| 15884 | 349 | #endif /* _PURPLE_SIGNALS_H_ */ |