Mercurial > pidgin
annotate libpurple/gaim-compat.h @ 15826:f59cfcce68a8
Add auto-complete support in request-entries that have 'screenname' hint set. This can be useful in, for example, 'send im' dialog etc.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Mon, 19 Mar 2007 06:34:51 +0000 |
parents | 2dd78f245ba4 |
children | 32c366eeeb99 |
rev | line source |
---|---|
15374 | 1 /** |
2 * @file gaim-compat.h Gaim Compat macros | |
3 * @ingroup core | |
4 * | |
5 * pidgin | |
6 * | |
7 * Pidgin is the legal property of its developers, whose names are too numerous | |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 * | |
25 * @see @ref account-signals | |
26 */ | |
27 #ifndef _GAIM_COMPAT_H_ | |
28 #define _GAIM_COMPAT_H_ | |
29 | |
30 /* from account.h */ | |
31 #define GaimAccountUiOps PurpleAccountUiOps | |
32 #define GaimAccount PurpleAccount | |
33 | |
34 #define GaimFilterAccountFunc PurpleFilterAccountFunc | |
35 #define GaimAccountRequestAuthorizationCb PurpleAccountRequestAuthorizationCb | |
36 | |
37 #define gaim_account_new purple_account_new | |
38 #define gaim_account_destroy purple_account_destroy | |
39 #define gaim_account_connect purple_account_connect | |
40 #define gaim_account_register purple_account_register | |
41 #define gaim_account_disconnect purple_account_disconnect | |
42 #define gaim_account_notify_added purple_account_notify_added | |
43 #define gaim_account_request_add purple_account_request_add | |
44 | |
45 #define gaim_account_request_authorization purple_account_request_authorization | |
46 #define gaim_account_request_change_password purple_account_request_change_password | |
47 #define gaim_account_request_change_user_info purple_account_request_change_user_info | |
48 | |
49 #define gaim_account_set_username purple_account_set_username | |
50 #define gaim_account_set_password purple_account_set_password | |
51 #define gaim_account_set_alias purple_account_set_alias | |
52 #define gaim_account_set_user_info purple_account_set_user_info | |
53 #define gaim_account_set_buddy_icon purple_account_set_buddy_icon | |
54 #define gaim_account_set_buddy_icon_path purple_account_set_buddy_icon_path | |
55 #define gaim_account_set_protocol_id purple_account_set_protocol_id | |
56 #define gaim_account_set_connection purple_account_set_connection | |
57 #define gaim_account_set_remember_password purple_account_set_remember_password | |
58 #define gaim_account_set_check_mail purple_account_set_check_mail | |
59 #define gaim_account_set_enabled purple_account_set_enabled | |
60 #define gaim_account_set_proxy_info purple_account_set_proxy_info | |
61 #define gaim_account_set_status_types purple_account_set_status_types | |
62 #define gaim_account_set_status purple_account_set_status | |
63 #define gaim_account_set_status_list purple_account_set_status_list | |
64 | |
65 #define gaim_account_clear_settings purple_account_clear_settings | |
66 | |
67 #define gaim_account_set_int purple_account_set_int | |
68 #define gaim_account_set_string purple_account_set_string | |
69 #define gaim_account_set_bool purple_account_set_bool | |
70 | |
71 #define gaim_account_set_ui_int purple_account_set_ui_int | |
72 #define gaim_account_set_ui_string purple_account_set_ui_string | |
73 #define gaim_account_set_ui_bool purple_account_set_ui_bool | |
74 | |
75 #define gaim_account_is_connected purple_account_is_connected | |
76 #define gaim_account_is_connecting purple_account_is_connecting | |
77 #define gaim_account_is_disconnected purple_account_is_disconnected | |
78 | |
79 #define gaim_account_get_username purple_account_get_username | |
80 #define gaim_account_get_password purple_account_get_password | |
81 #define gaim_account_get_alias purple_account_get_alias | |
82 #define gaim_account_get_user_info purple_account_get_user_info | |
83 #define gaim_account_get_buddy_icon purple_account_get_buddy_icon | |
84 #define gaim_account_get_buddy_icon_path purple_account_get_buddy_icon_path | |
85 #define gaim_account_get_protocol_id purple_account_get_protocol_id | |
86 #define gaim_account_get_protocol_name purple_account_get_protocol_name | |
87 #define gaim_account_get_connection purple_account_get_connection | |
88 #define gaim_account_get_remember_password purple_account_get_remember_password | |
89 #define gaim_account_get_check_mail purple_account_get_check_mail | |
90 #define gaim_account_get_enabled purple_account_get_enabled | |
91 #define gaim_account_get_proxy_info purple_account_get_proxy_info | |
92 #define gaim_account_get_active_status purple_account_get_active_status | |
93 #define gaim_account_get_status purple_account_get_status | |
94 #define gaim_account_get_status_type purple_account_get_status_type | |
95 #define gaim_account_get_status_type_with_primitive \ | |
96 purple_account_get_status_type_with_primitive | |
97 | |
98 #define gaim_account_get_presence purple_account_get_presence | |
99 #define gaim_account_is_status_active purple_account_is_status_active | |
100 #define gaim_account_get_status_types purple_account_get_status_types | |
101 | |
102 #define gaim_account_get_int purple_account_get_int | |
103 #define gaim_account_get_string purple_account_get_string | |
104 #define gaim_account_get_bool purple_account_get_bool | |
105 | |
106 #define gaim_account_get_ui_int purple_account_get_ui_int | |
107 #define gaim_account_get_ui_string purple_account_get_ui_string | |
108 #define gaim_account_get_ui_bool purple_account_get_ui_bool | |
109 | |
110 | |
111 #define gaim_account_get_log purple_account_get_log | |
112 #define gaim_account_destroy_log purple_account_destroy_log | |
113 | |
114 #define gaim_account_add_buddy purple_account_add_buddy | |
115 #define gaim_account_add_buddies purple_account_add_buddies | |
116 #define gaim_account_remove_buddy purple_account_remove_buddy | |
117 #define gaim_account_remove_buddies purple_account_remove_buddies | |
118 | |
119 #define gaim_account_remove_group purple_account_remove_group | |
120 | |
121 #define gaim_account_change_password purple_account_change_password | |
122 | |
123 #define gaim_account_supports_offline_message purple_account_supports_offline_message | |
124 | |
125 #define gaim_accounts_add purple_accounts_add | |
126 #define gaim_accounts_remove purple_accounts_remove | |
127 #define gaim_accounts_delete purple_accounts_delete | |
128 #define gaim_accounts_reorder purple_accounts_reorder | |
129 | |
130 #define gaim_accounts_get_all purple_accounts_get_all | |
131 #define gaim_accounts_get_all_active purple_accounts_get_all_active | |
132 | |
133 #define gaim_accounts_find purple_accounts_find | |
134 | |
135 #define gaim_accounts_restore_current_statuses purple_accounts_restore_current_statuses | |
136 | |
137 #define gaim_accounts_set_ui_ops purple_accounts_set_ui_ops | |
138 #define gaim_accounts_get_ui_ops purple_accounts_get_ui_ops | |
139 | |
140 #define gaim_accounts_get_handle purple_accounts_get_handle | |
141 | |
142 #define gaim_accounts_init purple_accounts_init | |
143 #define gaim_accounts_uninit purple_accounts_uninit | |
144 | |
145 /* from accountopt.h */ | |
146 | |
147 #define GaimAccountOption PurpleAccountOption | |
148 #define GaimAccountUserSplit PurpleAccountUserSplit | |
149 | |
150 #define gaim_account_option_new purple_account_option_new | |
151 #define gaim_account_option_bool_new purple_account_option_bool_new | |
152 #define gaim_account_option_int_new purple_account_option_int_new | |
153 #define gaim_account_option_string_new purple_account_option_string_new | |
154 #define gaim_account_option_list_new purple_account_option_list_new | |
155 | |
156 #define gaim_account_option_destroy purple_account_option_destroy | |
157 | |
158 #define gaim_account_option_set_default_bool purple_account_option_set_default_bool | |
159 #define gaim_account_option_set_default_int purple_account_option_set_default_int | |
160 #define gaim_account_option_set_default_string purple_account_option_set_default_string | |
161 | |
162 #define gaim_account_option_set_masked purple_account_option_set_masked | |
163 | |
164 #define gaim_account_option_set_list purple_account_option_set_list | |
165 | |
166 #define gaim_account_option_add_list_item purple_account_option_add_list_item | |
167 | |
168 #define gaim_account_option_get_type purple_account_option_get_type | |
169 #define gaim_account_option_get_text purple_account_option_get_text | |
170 #define gaim_account_option_get_setting purple_account_option_get_setting | |
171 | |
172 #define gaim_account_option_get_default_bool purple_account_option_get_default_bool | |
173 #define gaim_account_option_get_default_int purple_account_option_get_default_int | |
174 #define gaim_account_option_get_default_string purple_account_option_get_default_string | |
175 #define gaim_account_option_get_default_list_value purple_account_option_get_default_list_value | |
176 | |
177 #define gaim_account_option_get_masked purple_account_option_get_masked | |
178 #define gaim_account_option_get_list purple_account_option_get_list | |
179 | |
180 #define gaim_account_user_split_new purple_account_user_split_new | |
181 #define gaim_account_user_split_destroy purple_account_user_split_destroy | |
182 | |
183 #define gaim_account_user_split_get_text purple_account_user_split_get_text | |
184 #define gaim_account_user_split_get_default_value purple_account_user_split_get_default_value | |
185 #define gaim_account_user_split_get_separator purple_account_user_split_get_separator | |
186 | |
187 /* from blist.h */ | |
188 | |
189 #define GaimBuddyList PurpleBuddyList | |
190 #define GaimBlistUiOps PurpleBlistUiOps | |
191 #define GaimBlistNode PurpleBlistNode | |
192 | |
193 #define GaimChat PurpleChat | |
194 #define GaimGroup PurpleGroup | |
195 #define GaimContact PurpleContact | |
196 #define GaimBuddy PurpleBuddy | |
197 | |
198 #define GAIM_BLIST_GROUP_NODE PURPLE_BLIST_GROUP_NODE | |
199 #define GAIM_BLIST_CONTACT_NODE PURPLE_BLIST_CONTACT_NODE | |
200 #define GAIM_BLIST_BUDDY_NODE PURPLE_BLIST_BUDDY_NODE | |
201 #define GAIM_BLIST_CHAT_NODE PURPLE_BLIST_CHAT_NODE | |
202 #define GAIM_BLIST_OTHER_NODE PURPLE_BLIST_OTHER_NODE | |
203 #define GaimBlistNodeType PurpleBlistNodeType | |
204 | |
205 #define GAIM_BLIST_NODE_IS_CHAT PURPLE_BLIST_NODE_IS_CHAT | |
206 #define GAIM_BLIST_NODE_IS_BUDDY PURPLE_BLIST_NODE_IS_BUDDY | |
207 #define GAIM_BLIST_NODE_IS_CONTACT PURPLE_BLIST_NODE_IS_CONTACT | |
208 #define GAIM_BLIST_NODE_IS_GROUP PURPLE_BLIST_NODE_IS_GROUP | |
209 | |
210 #define GAIM_BUDDY_IS_ONLINE PURPLE_BUDDY_IS_ONLINE | |
211 | |
212 #define GAIM_BLIST_NODE_FLAG_NO_SAVE PURPLE_BLIST_NODE_FLAG_NO_SAVE | |
213 #define GaimBlistNodeFlags PurpleBlistNodeFlags | |
214 | |
215 #define GAIM_BLIST_NODE_HAS_FLAG PURPLE_BLIST_NODE_HAS_FLAG | |
216 #define GAIM_BLIST_NODE_SHOULD_SAVE PURPLE_BLIST_NODE_SHOULD_SAVE | |
217 | |
218 #define GAIM_BLIST_NODE_NAME PURPLE_BLIST_NODE_NAME | |
219 | |
220 | |
221 #define gaim_blist_new purple_blist_new | |
222 #define gaim_set_blist purple_set_blist | |
223 #define gaim_get_blist purple_get_blist | |
224 | |
225 #define gaim_blist_get_root purple_blist_get_root | |
226 #define gaim_blist_node_next purple_blist_node_next | |
227 | |
228 #define gaim_blist_show purple_blist_show | |
229 | |
230 #define gaim_blist_destroy purple_blist_destroy | |
231 | |
232 #define gaim_blist_set_visible purple_blist_set_visible | |
233 | |
234 #define gaim_blist_update_buddy_status purple_blist_update_buddy_status | |
235 #define gaim_blist_update_buddy_icon purple_blist_update_buddy_icon | |
236 | |
237 | |
238 #define gaim_blist_alias_contact purple_blist_alias_contact | |
239 #define gaim_blist_alias_buddy purple_blist_alias_buddy | |
240 #define gaim_blist_server_alias_buddy purple_blist_server_alias_buddy | |
241 #define gaim_blist_alias_chat purple_blist_alias_chat | |
242 | |
243 #define gaim_blist_rename_buddy purple_blist_rename_buddy | |
244 #define gaim_blist_rename_group purple_blist_rename_group | |
245 | |
246 #define gaim_chat_new purple_chat_new | |
247 #define gaim_blist_add_chat purple_blist_add_chat | |
248 | |
249 #define gaim_buddy_new purple_buddy_new | |
250 #define gaim_buddy_set_icon purple_buddy_set_icon | |
251 #define gaim_buddy_get_account purple_buddy_get_account | |
252 #define gaim_buddy_get_name purple_buddy_get_name | |
253 #define gaim_buddy_get_icon purple_buddy_get_icon | |
254 #define gaim_buddy_get_contact purple_buddy_get_contact | |
255 #define gaim_buddy_get_presence purple_buddy_get_presence | |
256 | |
257 #define gaim_blist_add_buddy purple_blist_add_buddy | |
258 | |
259 #define gaim_group_new purple_group_new | |
260 | |
261 #define gaim_blist_add_group purple_blist_add_group | |
262 | |
263 #define gaim_contact_new purple_contact_new | |
264 | |
265 #define gaim_blist_add_contact purple_blist_add_contact | |
266 #define gaim_blist_merge_contact purple_blist_merge_contact | |
267 | |
268 #define gaim_contact_get_priority_buddy purple_contact_get_priority_buddy | |
269 #define gaim_contact_set_alias purple_contact_set_alias | |
270 #define gaim_contact_get_alias purple_contact_get_alias | |
271 #define gaim_contact_on_account purple_contact_on_account | |
272 | |
273 #define gaim_contact_invalidate_priority_buddy purple_contact_invalidate_priority_buddy | |
274 | |
275 #define gaim_blist_remove_buddy purple_blist_remove_buddy | |
276 #define gaim_blist_remove_contact purple_blist_remove_contact | |
277 #define gaim_blist_remove_chat purple_blist_remove_chat | |
278 #define gaim_blist_remove_group purple_blist_remove_group | |
279 | |
280 #define gaim_buddy_get_alias_only purple_buddy_get_alias_only | |
281 #define gaim_buddy_get_server_alias purple_buddy_get_server_alias | |
282 #define gaim_buddy_get_contact_alias purple_buddy_get_contact_alias | |
283 #define gaim_buddy_get_local_alias purple_buddy_get_local_alias | |
284 #define gaim_buddy_get_alias purple_buddy_get_alias | |
285 | |
286 #define gaim_chat_get_name purple_chat_get_name | |
287 | |
288 #define gaim_find_buddy purple_find_buddy | |
289 #define gaim_find_buddy_in_group purple_find_buddy_in_group | |
290 #define gaim_find_buddies purple_find_buddies | |
291 | |
292 #define gaim_find_group purple_find_group | |
293 | |
294 #define gaim_blist_find_chat purple_blist_find_chat | |
295 | |
296 #define gaim_chat_get_group purple_chat_get_group | |
297 #define gaim_buddy_get_group purple_buddy_get_group | |
298 | |
299 #define gaim_group_get_accounts purple_group_get_accounts | |
300 #define gaim_group_on_account purple_group_on_account | |
301 | |
302 #define gaim_blist_add_account purple_blist_add_account | |
303 #define gaim_blist_remove_account purple_blist_remove_account | |
304 | |
305 #define gaim_blist_get_group_size purple_blist_get_group_size | |
306 #define gaim_blist_get_group_online_count purple_blist_get_group_online_count | |
307 | |
308 #define gaim_blist_load purple_blist_load | |
309 #define gaim_blist_schedule_save purple_blist_schedule_save | |
310 | |
311 #define gaim_blist_request_add_buddy purple_blist_request_add_buddy | |
312 #define gaim_blist_request_add_chat purple_blist_request_add_chat | |
313 #define gaim_blist_request_add_group purple_blist_request_add_group | |
314 | |
315 #define gaim_blist_node_set_bool purple_blist_node_set_bool | |
316 #define gaim_blist_node_get_bool purple_blist_node_get_bool | |
317 #define gaim_blist_node_set_int purple_blist_node_set_int | |
318 #define gaim_blist_node_get_int purple_blist_node_get_int | |
319 #define gaim_blist_node_set_string purple_blist_node_set_string | |
320 #define gaim_blist_node_get_string purple_blist_node_get_string | |
321 | |
322 #define gaim_blist_node_remove_setting purple_blist_node_remove_setting | |
323 | |
324 #define gaim_blist_node_set_flags purple_blist_node_set_flags | |
325 #define gaim_blist_node_get_flags purple_blist_node_get_flags | |
326 | |
327 #define gaim_blist_node_get_extended_menu purple_blist_node_get_extended_menu | |
328 | |
329 #define gaim_blist_set_ui_ops purple_blist_set_ui_ops | |
330 #define gaim_blist_get_ui_ops purple_blist_get_ui_ops | |
331 | |
332 #define gaim_blist_get_handle purple_blist_get_handle | |
333 | |
334 #define gaim_blist_init purple_blist_init | |
335 #define gaim_blist_uninit purple_blist_uninit | |
336 | |
15389 | 337 |
338 #define GaimBuddyIcon PurpleBuddyIcon | |
339 | |
340 #define gaim_buddy_icon_new purple_buddy_icon_new | |
341 #define gaim_buddy_icon_destroy purple_buddy_icon_destroy | |
342 #define gaim_buddy_icon_ref purple_buddy_icon_ref | |
343 #define gaim_buddy_icon_unref purple_buddy_icon_unref | |
344 #define gaim_buddy_icon_update purple_buddy_icon_update | |
345 #define gaim_buddy_icon_cache purple_buddy_icon_cache | |
346 #define gaim_buddy_icon_uncache purple_buddy_icon_uncache | |
347 | |
348 #define gaim_buddy_icon_set_account purple_buddy_icon_set_account | |
349 #define gaim_buddy_icon_set_username purple_buddy_icon_set_username | |
350 #define gaim_buddy_icon_set_data purple_buddy_icon_set_data | |
351 #define gaim_buddy_icon_set_path purple_buddy_icon_set_path | |
352 | |
353 #define gaim_buddy_icon_get_account purple_buddy_icon_get_account | |
354 #define gaim_buddy_icon_get_username purple_buddy_icon_get_username | |
355 #define gaim_buddy_icon_get_data purple_buddy_icon_get_data | |
356 #define gaim_buddy_icon_get_path purple_buddy_icon_get_path | |
357 #define gaim_buddy_icon_get_type purple_buddy_icon_get_type | |
358 | |
359 #define gaim_buddy_icons_set_for_user purple_buddy_icons_set_for_user | |
360 #define gaim_buddy_icons_find purple_buddy_icons_find | |
361 #define gaim_buddy_icons_set_caching purple_buddy_icons_set_caching | |
362 #define gaim_buddy_icons_is_caching purple_buddy_icons_is_caching | |
363 #define gaim_buddy_icons_set_cache_dir purple_buddy_icons_set_cache_dir | |
364 #define gaim_buddy_icons_get_cache_dir purple_buddy_icons_get_cache_dir | |
365 #define gaim_buddy_icons_get_full_path purple_buddy_icons_get_full_path | |
366 #define gaim_buddy_icons_get_handle purple_buddy_icons_get_handle | |
367 | |
368 #define gaim_buddy_icons_init purple_buddy_icons_init | |
369 #define gaim_buddy_icons_uninit purple_buddy_icons_uninit | |
370 | |
371 #define gaim_buddy_icon_get_scale_size purple_buddy_icon_get_scale_size | |
372 | |
15450 | 373 /* from cipher.h */ |
374 | |
15391 | 375 #define GAIM_CIPHER PURPLE_CIPHER |
376 #define GAIM_CIPHER_OPS PURPLE_CIPHER_OPS | |
377 #define GAIM_CIPHER_CONTEXT PURPLE_CIPHER_CONTEXT | |
378 | |
379 #define GaimCipher PurpleCipher | |
380 #define GaimCipherOps PurpleCipherOps | |
381 #define GaimCipherContext PurpleCipherContext | |
382 | |
383 #define GAIM_CIPHER_CAPS_SET_OPT PURPLE_CIPHER_CAPS_SET_OPT | |
384 #define GAIM_CIPHER_CAPS_GET_OPT PURPLE_CIPHER_CAPS_GET_OPT | |
385 #define GAIM_CIPHER_CAPS_INIT PURPLE_CIPHER_CAPS_INIT | |
386 #define GAIM_CIPHER_CAPS_RESET PURPLE_CIPHER_CAPS_RESET | |
387 #define GAIM_CIPHER_CAPS_UNINIT PURPLE_CIPHER_CAPS_UNINIT | |
388 #define GAIM_CIPHER_CAPS_SET_IV PURPLE_CIPHER_CAPS_SET_IV | |
389 #define GAIM_CIPHER_CAPS_APPEND PURPLE_CIPHER_CAPS_APPEND | |
390 #define GAIM_CIPHER_CAPS_DIGEST PURPLE_CIPHER_CAPS_DIGEST | |
391 #define GAIM_CIPHER_CAPS_ENCRYPT PURPLE_CIPHER_CAPS_ENCRYPT | |
392 #define GAIM_CIPHER_CAPS_DECRYPT PURPLE_CIPHER_CAPS_DECRYPT | |
393 #define GAIM_CIPHER_CAPS_SET_SALT PURPLE_CIPHER_CAPS_SET_SALT | |
394 #define GAIM_CIPHER_CAPS_GET_SALT_SIZE PURPLE_CIPHER_CAPS_GET_SALT_SIZE | |
395 #define GAIM_CIPHER_CAPS_SET_KEY PURPLE_CIPHER_CAPS_SET_KEY | |
396 #define GAIM_CIPHER_CAPS_GET_KEY_SIZE PURPLE_CIPHER_CAPS_GET_KEY_SIZE | |
397 #define GAIM_CIPHER_CAPS_UNKNOWN PURPLE_CIPHER_CAPS_UNKNOWN | |
398 | |
399 #define gaim_cipher_get_name purple_cipher_get_name | |
400 #define gaim_cipher_get_capabilities purple_cipher_get_capabilities | |
401 #define gaim_cipher_digest_region purple_cipher_digest_region | |
402 | |
403 #define gaim_ciphers_find_cipher purple_ciphers_find_cipher | |
404 #define gaim_ciphers_register_cipher purple_ciphers_register_cipher | |
405 #define gaim_ciphers_unregister_cipher purple_ciphers_unregister_cipher | |
406 #define gaim_ciphers_get_ciphers purple_ciphers_get_ciphers | |
407 | |
408 #define gaim_ciphers_get_handle purple_ciphers_get_handle | |
409 #define gaim_ciphers_init purple_ciphers_init | |
410 #define gaim_ciphers_uninit purple_ciphers_uninit | |
411 | |
412 #define gaim_cipher_context_set_option purple_cipher_context_set_option | |
413 #define gaim_cipher_context_get_option purple_cipher_context_get_option | |
414 | |
415 #define gaim_cipher_context_new purple_cipher_context_new | |
416 #define gaim_cipher_context_new_by_name purple_cipher_context_new_by_name | |
417 #define gaim_cipher_context_reset purple_cipher_context_reset | |
418 #define gaim_cipher_context_destroy purple_cipher_context_destroy | |
419 #define gaim_cipher_context_set_iv purple_cipher_context_set_iv | |
420 #define gaim_cipher_context_append purple_cipher_context_append | |
421 #define gaim_cipher_context_digest purple_cipher_context_digest | |
422 #define gaim_cipher_context_digest_to_str purple_cipher_context_digest_to_str | |
423 #define gaim_cipher_context_encrypt purple_cipher_context_encrypt | |
424 #define gaim_cipher_context_decrypt purple_cipher_context_decrypt | |
425 #define gaim_cipher_context_set_salt purple_cipher_context_set_salt | |
426 #define gaim_cipher_context_get_salt_size purple_cipher_context_get_salt_size | |
427 #define gaim_cipher_context_set_key purple_cipher_context_set_key | |
428 #define gaim_cipher_context_get_key_size purple_cipher_context_get_key_size | |
429 #define gaim_cipher_context_set_data purple_cipher_context_set_data | |
430 #define gaim_cipher_context_get_data purple_cipher_context_get_data | |
431 | |
432 #define gaim_cipher_http_digest_calculate_session_key \ | |
433 purple_cipher_http_digest_calculate_session_key | |
434 | |
435 #define gaim_cipher_http_digest_calculate_response \ | |
436 purple_cipher_http_digest_calculate_response | |
437 | |
15450 | 438 /* from circbuffer.h */ |
439 | |
440 #define GaimCircBuffer PurpleCircBuffer | |
441 | |
442 #define gaim_circ_buffer_new purple_circ_buffer_new | |
443 #define gaim_circ_buffer_destroy purple_circ_buffer_destroy | |
444 #define gaim_circ_buffer_append purple_circ_buffer_append | |
445 #define gaim_circ_buffer_get_max_read purple_circ_buffer_get_max_read | |
446 #define gaim_circ_buffer_mark_read purple_circ_buffer_mark_read | |
447 | |
448 /* from cmds.h */ | |
449 | |
450 #define GaimCmdPriority PurpleCmdPriority | |
451 #define GaimCmdFlag PurpleCmdFlag | |
452 #define GaimCmdStatus PurpleCmdStatus | |
453 #define GaimCmdRet PurpleCmdRet | |
454 | |
455 #define GAIM_CMD_FUNC PURPLE_CMD_FUNC | |
456 | |
457 #define GaimCmdFunc PurpleCmdFunc | |
458 | |
459 #define GaimCmdId PurpleCmdId | |
460 | |
461 #define gaim_cmd_register purple_cmd_register | |
462 #define gaim_cmd_unregister purple_cmd_unregister | |
463 #define gaim_cmd_do_command purple_cmd_do_command | |
464 #define gaim_cmd_list purple_cmd_list | |
465 #define gaim_cmd_help purple_cmd_help | |
466 | |
467 /* from connection.h */ | |
468 | |
469 #define GaimConnection PurpleConnection | |
470 | |
471 #define GAIM_CONNECTION_HTML PURPLE_CONNECTION_HTML | |
472 #define GAIM_CONNECTION_NO_BGCOLOR PURPLE_CONNECTION_NO_BGCOLOR | |
473 #define GAIM_CONNECTION_AUTO_RESP PURPLE_CONNECTION_AUTO_RESP | |
474 #define GAIM_CONNECTION_FORMATTING_WBFO PURPLE_CONNECTION_FORMATTING_WBFO | |
475 #define GAIM_CONNECTION_NO_NEWLINES PURPLE_CONNECTION_NO_NEWLINES | |
476 #define GAIM_CONNECTION_NO_FONTSIZE PURPLE_CONNECTION_NO_FONTSIZE | |
477 #define GAIM_CONNECTION_NO_URLDESC PURPLE_CONNECTION_NO_URLDESC | |
478 #define GAIM_CONNECTION_NO_IMAGES PURPLE_CONNECTION_NO_IMAGES | |
479 | |
480 #define GaimConnectionFlags PurpleConnectionFlags | |
481 | |
482 #define GAIM_DISCONNECTED PURPLE_DISCONNECTED | |
483 #define GAIM_CONNECTED PURPLE_CONNECTED | |
484 #define GAIM_CONNECTING PURPLE_CONNECTING | |
485 | |
486 #define GaimConnectionState PurpleConnectionState | |
487 | |
488 #define GaimConnectionUiOps PurpleConnectionUiOps | |
489 | |
490 #define gaim_connection_new purple_connection_new | |
491 #define gaim_connection_destroy purple_connection_destroy | |
492 | |
493 #define gaim_connection_set_state purple_connection_set_state | |
494 #define gaim_connection_set_account purple_connection_set_account | |
495 #define gaim_connection_set_display_name purple_connection_set_display_name | |
496 #define gaim_connection_get_state purple_connection_get_state | |
497 | |
498 #define GAIM_CONNECTION_IS_CONNECTED PURPLE_CONNECTION_IS_CONNECTED | |
499 | |
500 #define gaim_connection_get_account purple_connection_get_account | |
501 #define gaim_connection_get_password purple_connection_get_password | |
502 #define gaim_connection_get_display_name purple_connection_get_display_name | |
503 | |
504 #define gaim_connection_update_progress purple_connection_update_progress | |
505 | |
506 #define gaim_connection_notice purple_connection_notice | |
507 #define gaim_connection_error purple_connection_error | |
508 | |
509 #define gaim_connections_disconnect_all purple_connections_disconnect_all | |
510 | |
511 #define gaim_connections_get_all purple_connections_get_all | |
512 #define gaim_connections_get_connecting purple_connections_get_connecting | |
513 | |
514 #define GAIM_CONNECTION_IS_VALID PURPLE_CONNECTION_IS_VALID | |
515 | |
516 #define gaim_connections_set_ui_ops purple_connections_set_ui_ops | |
517 #define gaim_connections_get_ui_ops purple_connections_get_ui_ops | |
518 | |
519 #define gaim_connections_init purple_connections_init | |
520 #define gaim_connections_uninit purple_connections_uninit | |
521 #define gaim_connections_get_handle purple_connections_get_handle | |
522 | |
523 | |
524 /* from conversation.h */ | |
525 | |
526 #define GaimConversationUiOps PurpleConversationUiOps | |
527 #define GaimConversation PurpleConversation | |
528 #define GaimConvIm PurpleConvIm | |
529 #define GaimConvChat PurpleConvChat | |
530 #define GaimConvChatBuddy PurpleConvChatBuddy | |
531 | |
532 #define GAIM_CONV_TYPE_UNKNOWN PURPLE_CONV_TYPE_UNKNOWN | |
533 #define GAIM_CONV_TYPE_IM PURPLE_CONV_TYPE_IM | |
534 #define GAIM_CONV_TYPE_CHAT PURPLE_CONV_TYPE_CHAT | |
535 #define GAIM_CONV_TYPE_MISC PURPLE_CONV_TYPE_MISC | |
536 #define GAIM_CONV_TYPE_ANY PURPLE_CONV_TYPE_ANY | |
537 | |
538 #define GaimConversationType PurpleConversationType | |
539 | |
540 #define GAIM_CONV_UPDATE_ADD PURPLE_CONV_UPDATE_ADD | |
541 #define GAIM_CONV_UPDATE_REMOVE PURPLE_CONV_UPDATE_REMOVE | |
542 #define GAIM_CONV_UPDATE_ACCOUNT PURPLE_CONV_UPDATE_ACCOUNT | |
543 #define GAIM_CONV_UPDATE_TYPING PURPLE_CONV_UPDATE_TYPING | |
544 #define GAIM_CONV_UPDATE_UNSEEN PURPLE_CONV_UPDATE_UNSEEN | |
545 #define GAIM_CONV_UPDATE_LOGGING PURPLE_CONV_UPDATE_LOGGING | |
546 #define GAIM_CONV_UPDATE_TOPIC PURPLE_CONV_UPDATE_TOPIC | |
547 #define GAIM_CONV_ACCOUNT_ONLINE PURPLE_CONV_ACCOUNT_ONLINE | |
548 #define GAIM_CONV_ACCOUNT_OFFLINE PURPLE_CONV_ACCOUNT_OFFLINE | |
549 #define GAIM_CONV_UPDATE_AWAY PURPLE_CONV_UPDATE_AWAY | |
550 #define GAIM_CONV_UPDATE_ICON PURPLE_CONV_UPDATE_ICON | |
551 #define GAIM_CONV_UPDATE_TITLE PURPLE_CONV_UPDATE_TITLE | |
552 #define GAIM_CONV_UPDATE_CHATLEFT PURPLE_CONV_UPDATE_CHATLEFT | |
553 #define GAIM_CONV_UPDATE_FEATURES PURPLE_CONV_UPDATE_FEATURES | |
554 | |
555 #define GaimConvUpdateType PurpleConvUpdateType | |
556 | |
557 #define GAIM_NOT_TYPING PURPLE_NOT_TYPING | |
558 #define GAIM_TYPING PURPLE_TYPING | |
559 #define GAIM_TYPED PURPLE_TYPED | |
560 | |
561 #define GaimTypingState PurpleTypingState | |
562 | |
563 #define GAIM_MESSAGE_SEND PURPLE_MESSAGE_SEND | |
564 #define GAIM_MESSAGE_RECV PURPLE_MESSAGE_RECV | |
565 #define GAIM_MESSAGE_SYSTEM PURPLE_MESSAGE_SYSTEM | |
566 #define GAIM_MESSAGE_AUTO_RESP PURPLE_MESSAGE_AUTO_RESP | |
567 #define GAIM_MESSAGE_ACTIVE_ONLY PURPLE_MESSAGE_ACTIVE_ONLY | |
568 #define GAIM_MESSAGE_NICK PURPLE_MESSAGE_NICK | |
569 #define GAIM_MESSAGE_NO_LOG PURPLE_MESSAGE_NO_LOG | |
570 #define GAIM_MESSAGE_WHISPER PURPLE_MESSAGE_WHISPER | |
571 #define GAIM_MESSAGE_ERROR PURPLE_MESSAGE_ERROR | |
572 #define GAIM_MESSAGE_DELAYED PURPLE_MESSAGE_DELAYED | |
573 #define GAIM_MESSAGE_RAW PURPLE_MESSAGE_RAW | |
574 #define GAIM_MESSAGE_IMAGES PURPLE_MESSAGE_IMAGES | |
575 | |
576 #define GaimMessageFlags PurpleMessageFlags | |
577 | |
578 #define GAIM_CBFLAGS_NONE PURPLE_CBFLAGS_NONE | |
579 #define GAIM_CBFLAGS_VOICE PURPLE_CBFLAGS_VOICE | |
580 #define GAIM_CBFLAGS_HALFOP PURPLE_CBFLAGS_HALFOP | |
581 #define GAIM_CBFLAGS_OP PURPLE_CBFLAGS_OP | |
582 #define GAIM_CBFLAGS_FOUNDER PURPLE_CBFLAGS_FOUNDER | |
583 #define GAIM_CBFLAGS_TYPING PURPLE_CBFLAGS_TYPING | |
584 | |
585 #define GaimConvChatBuddyFlags PurpleConvChatBuddyFlags | |
586 | |
587 #define gaim_conversations_set_ui_ops purple_conversations_set_ui_ops | |
588 | |
589 #define gaim_conversation_new purple_conversation_new | |
590 #define gaim_conversation_destroy purple_conversation_destroy | |
591 #define gaim_conversation_present purple_conversation_present | |
592 #define gaim_conversation_get_type purple_conversation_get_type | |
593 #define gaim_conversation_set_ui_ops purple_conversation_set_ui_ops | |
594 #define gaim_conversation_get_ui_ops purple_conversation_get_ui_ops | |
595 #define gaim_conversation_set_account purple_conversation_set_account | |
596 #define gaim_conversation_get_account purple_conversation_get_account | |
597 #define gaim_conversation_get_gc purple_conversation_get_gc | |
598 #define gaim_conversation_set_title purple_conversation_set_title | |
599 #define gaim_conversation_get_title purple_conversation_get_title | |
600 #define gaim_conversation_autoset_title purple_conversation_autoset_title | |
601 #define gaim_conversation_set_name purple_conversation_set_name | |
602 #define gaim_conversation_get_name purple_conversation_get_name | |
603 #define gaim_conversation_set_logging purple_conversation_set_logging | |
604 #define gaim_conversation_is_logging purple_conversation_is_logging | |
605 #define gaim_conversation_close_logs purple_conversation_close_logs | |
606 #define gaim_conversation_get_im_data purple_conversation_get_im_data | |
607 | |
608 #define GAIM_CONV_IM PURPLE_CONV_IM | |
609 | |
610 #define gaim_conversation_get_chat_data purple_conversation_get_chat_data | |
611 | |
612 #define GAIM_CONV_CHAT PURPLE_CONV_CHAT | |
613 | |
614 #define gaim_conversation_set_data purple_conversation_set_data | |
615 #define gaim_conversation_get_data purple_conversation_get_data | |
616 | |
617 #define gaim_get_conversations purple_get_conversations | |
618 #define gaim_get_ims purple_get_ims | |
619 #define gaim_get_chats purple_get_chats | |
620 | |
621 #define gaim_find_conversation_with_account \ | |
622 purple_find_conversation_with_account | |
623 | |
624 #define gaim_conversation_write purple_conversation_write | |
625 #define gaim_conversation_set_features purple_conversation_set_features | |
626 #define gaim_conversation_get_features purple_conversation_get_features | |
627 #define gaim_conversation_has_focus purple_conversation_has_focus | |
628 #define gaim_conversation_update purple_conversation_update | |
629 #define gaim_conversation_foreach purple_conversation_foreach | |
630 | |
631 #define gaim_conv_im_get_conversation purple_conv_im_get_conversation | |
632 #define gaim_conv_im_set_icon purple_conv_im_set_icon | |
633 #define gaim_conv_im_get_icon purple_conv_im_get_icon | |
634 #define gaim_conv_im_set_typing_state purple_conv_im_set_typing_state | |
635 #define gaim_conv_im_get_typing_state purple_conv_im_get_typing_state | |
636 | |
637 #define gaim_conv_im_start_typing_timeout purple_conv_im_start_typing_timeout | |
638 #define gaim_conv_im_stop_typing_timeout purple_conv_im_stop_typing_timeout | |
639 #define gaim_conv_im_get_typing_timeout purple_conv_im_get_typing_timeout | |
640 #define gaim_conv_im_set_type_again purple_conv_im_set_type_again | |
641 #define gaim_conv_im_get_type_again purple_conv_im_get_type_again | |
642 | |
643 #define gaim_conv_im_start_send_typed_timeout \ | |
644 purple_conv_im_start_send_typed_timeout | |
645 | |
646 #define gaim_conv_im_stop_send_typed_timeout \ | |
647 purple_conv_im_stop_send_typed_timeout | |
648 | |
649 #define gaim_conv_im_get_send_typed_timeout \ | |
650 purple_conv_im_get_send_typed_timeout | |
651 | |
652 #define gaim_conv_present_error purple_conv_present_error | |
653 #define gaim_conv_send_confirm purple_conv_send_confirm | |
654 | |
655 #define gaim_conv_im_update_typing purple_conv_im_update_typing | |
656 #define gaim_conv_im_write purple_conv_im_write | |
657 #define gaim_conv_im_send purple_conv_im_send | |
658 #define gaim_conv_im_send_with_flags purple_conv_im_send_with_flags | |
659 | |
660 #define gaim_conv_custom_smiley_add purple_conv_custom_smiley_add | |
661 #define gaim_conv_custom_smiley_write purple_conv_custom_smiley_write | |
662 #define gaim_conv_custom_smiley_close purple_conv_custom_smiley_close | |
663 | |
664 #define gaim_conv_chat_get_conversation purple_conv_chat_get_conversation | |
665 #define gaim_conv_chat_set_users purple_conv_chat_set_users | |
666 #define gaim_conv_chat_get_users purple_conv_chat_get_users | |
667 #define gaim_conv_chat_ignore purple_conv_chat_ignore | |
668 #define gaim_conv_chat_unignore purple_conv_chat_unignore | |
669 #define gaim_conv_chat_set_ignored purple_conv_chat_set_ignored | |
670 #define gaim_conv_chat_get_ignored purple_conv_chat_get_ignored | |
671 #define gaim_conv_chat_get_ignored_user purple_conv_chat_get_ignored_user | |
672 #define gaim_conv_chat_is_user_ignored purple_conv_chat_is_user_ignored | |
673 #define gaim_conv_chat_set_topic purple_conv_chat_set_topic | |
674 #define gaim_conv_chat_get_topic purple_conv_chat_get_topic | |
675 #define gaim_conv_chat_set_id purple_conv_chat_set_id | |
676 #define gaim_conv_chat_get_id purple_conv_chat_get_id | |
677 #define gaim_conv_chat_write purple_conv_chat_write | |
678 #define gaim_conv_chat_send purple_conv_chat_send | |
679 #define gaim_conv_chat_send_with_flags purple_conv_chat_send_with_flags | |
680 #define gaim_conv_chat_add_user purple_conv_chat_add_user | |
681 #define gaim_conv_chat_add_users purple_conv_chat_add_users | |
682 #define gaim_conv_chat_rename_user purple_conv_chat_rename_user | |
683 #define gaim_conv_chat_remove_user purple_conv_chat_remove_user | |
684 #define gaim_conv_chat_remove_users purple_conv_chat_remove_users | |
685 #define gaim_conv_chat_find_user purple_conv_chat_find_user | |
686 #define gaim_conv_chat_user_set_flags purple_conv_chat_user_set_flags | |
687 #define gaim_conv_chat_user_get_flags purple_conv_chat_user_get_flags | |
688 #define gaim_conv_chat_clear_users purple_conv_chat_clear_users | |
689 #define gaim_conv_chat_set_nick purple_conv_chat_set_nick | |
690 #define gaim_conv_chat_get_nick purple_conv_chat_get_nick | |
691 #define gaim_conv_chat_left purple_conv_chat_left | |
692 #define gaim_conv_chat_has_left purple_conv_chat_has_left | |
693 | |
694 #define gaim_find_chat purple_find_chat | |
695 | |
696 #define gaim_conv_chat_cb_new purple_conv_chat_cb_new | |
697 #define gaim_conv_chat_cb_find purple_conv_chat_cb_find | |
698 #define gaim_conv_chat_cb_get_name purple_conv_chat_cb_get_name | |
699 #define gaim_conv_chat_cb_destroy purple_conv_chat_cb_destroy | |
700 | |
701 #define gaim_conversations_get_handle purple_conversations_get_handle | |
702 #define gaim_conversations_init purple_conversations_init | |
703 #define gaim_conversations_uninit purple_conversations_uninit | |
704 | |
705 /* from core.h */ | |
706 | |
707 #define GaimCore PurpleCore | |
708 | |
709 #define GaimCoreUiOps PurpleCoreUiOps | |
710 | |
711 #define gaim_core_init purple_core_init | |
712 #define gaim_core_quit purple_core_quit | |
713 | |
714 #define gaim_core_quit_cb purple_core_quit_cb | |
715 #define gaim_core_get_version purple_core_get_version | |
716 #define gaim_core_get_ui purple_core_get_ui | |
717 #define gaim_get_core purple_get_core | |
718 #define gaim_core_set_ui_ops purple_core_set_ui_ops | |
719 #define gaim_core_get_ui_ops purple_core_get_ui_ops | |
720 | |
721 /* from debug.h */ | |
722 | |
723 #define GAIM_DEBUG_ALL PURPLE_DEBUG_ALL | |
724 #define GAIM_DEBUG_MISC PURPLE_DEBUG_MISC | |
725 #define GAIM_DEBUG_INFO PURPLE_DEBUG_INFO | |
726 #define GAIM_DEBUG_WARNING PURPLE_DEBUG_WARNING | |
727 #define GAIM_DEBUG_ERROR PURPLE_DEBUG_ERROR | |
728 #define GAIM_DEBUG_FATAL PURPLE_DEBUG_FATAL | |
729 | |
730 #define GaimDebugLevel PurpleDebugLevel | |
731 | |
732 #define GaimDebugUiOps PurpleDebugUiOps | |
733 | |
734 | |
735 #define gaim_debug purple_debug | |
736 #define gaim_debug_misc purple_debug_misc | |
737 #define gaim_debug_info purple_debug_info | |
738 #define gaim_debug_warning purple_debug_warning | |
739 #define gaim_debug_error purple_debug_error | |
740 #define gaim_debug_fatal purple_debug_fatal | |
741 | |
742 #define gaim_debug_set_enabled purple_debug_set_enabled | |
743 #define gaim_debug_is_enabled purple_debug_is_enabled | |
744 | |
745 #define gaim_debug_set_ui_ops purple_debug_set_ui_ops | |
746 #define gaim_debug_get_ui_ops purple_debug_get_ui_ops | |
747 | |
748 #define gaim_debug_init purple_debug_init | |
749 | |
750 /* from desktopitem.h */ | |
751 | |
752 #define GAIM_DESKTOP_ITEM_TYPE_NULL PURPLE_DESKTOP_ITEM_TYPE_NULL | |
753 #define GAIM_DESKTOP_ITEM_TYPE_OTHER PURPLE_DESKTOP_ITEM_TYPE_OTHER | |
754 #define GAIM_DESKTOP_ITEM_TYPE_APPLICATION PURPLE_DESKTOP_ITEM_TYPE_APPLICATION | |
755 #define GAIM_DESKTOP_ITEM_TYPE_LINK PURPLE_DESKTOP_ITEM_TYPE_LINK | |
756 #define GAIM_DESKTOP_ITEM_TYPE_FSDEVICE PURPLE_DESKTOP_ITEM_TYPE_FSDEVICE | |
757 #define GAIM_DESKTOP_ITEM_TYPE_MIME_TYPE PURPLE_DESKTOP_ITEM_TYPE_MIME_TYPE | |
758 #define GAIM_DESKTOP_ITEM_TYPE_DIRECTORY PURPLE_DESKTOP_ITEM_TYPE_DIRECTORY | |
759 #define GAIM_DESKTOP_ITEM_TYPE_SERVICE PURPLE_DESKTOP_ITEM_TYPE_SERVICE | |
760 #define GAIM_DESKTOP_ITEM_TYPE_SERVICE_TYPE PURPLE_DESKTOP_ITEM_TYPE_SERVICE_TYPE | |
761 | |
762 #define GaimDesktopItemType PurpleDesktopItemType | |
763 | |
764 #define GaimDesktopItem PurpleDesktopItem | |
765 | |
766 #define GAIM_TYPE_DESKTOP_ITEM PURPLE_TYPE_DESKTOP_ITEM | |
767 #define gaim_desktop_item_get_type purple_desktop_item_get_type | |
768 | |
769 /* standard */ | |
770 /* ugh, i'm just copying these as strings, rather than pidginifying them */ | |
771 #define GAIM_DESKTOP_ITEM_ENCODING "Encoding" /* string */ | |
772 #define GAIM_DESKTOP_ITEM_VERSION "Version" /* numeric */ | |
773 #define GAIM_DESKTOP_ITEM_NAME "Name" /* localestring */ | |
774 #define GAIM_DESKTOP_ITEM_GENERIC_NAME "GenericName" /* localestring */ | |
775 #define GAIM_DESKTOP_ITEM_TYPE "Type" /* string */ | |
776 #define GAIM_DESKTOP_ITEM_FILE_PATTERN "FilePattern" /* regexp(s) */ | |
777 #define GAIM_DESKTOP_ITEM_TRY_EXEC "TryExec" /* string */ | |
778 #define GAIM_DESKTOP_ITEM_NO_DISPLAY "NoDisplay" /* boolean */ | |
779 #define GAIM_DESKTOP_ITEM_COMMENT "Comment" /* localestring */ | |
780 #define GAIM_DESKTOP_ITEM_EXEC "Exec" /* string */ | |
781 #define GAIM_DESKTOP_ITEM_ACTIONS "Actions" /* strings */ | |
782 #define GAIM_DESKTOP_ITEM_ICON "Icon" /* string */ | |
783 #define GAIM_DESKTOP_ITEM_MINI_ICON "MiniIcon" /* string */ | |
784 #define GAIM_DESKTOP_ITEM_HIDDEN "Hidden" /* boolean */ | |
785 #define GAIM_DESKTOP_ITEM_PATH "Path" /* string */ | |
786 #define GAIM_DESKTOP_ITEM_TERMINAL "Terminal" /* boolean */ | |
787 #define GAIM_DESKTOP_ITEM_TERMINAL_OPTIONS "TerminalOptions" /* string */ | |
788 #define GAIM_DESKTOP_ITEM_SWALLOW_TITLE "SwallowTitle" /* string */ | |
789 #define GAIM_DESKTOP_ITEM_SWALLOW_EXEC "SwallowExec" /* string */ | |
790 #define GAIM_DESKTOP_ITEM_MIME_TYPE "MimeType" /* regexp(s) */ | |
791 #define GAIM_DESKTOP_ITEM_PATTERNS "Patterns" /* regexp(s) */ | |
792 #define GAIM_DESKTOP_ITEM_DEFAULT_APP "DefaultApp" /* string */ | |
793 #define GAIM_DESKTOP_ITEM_DEV "Dev" /* string */ | |
794 #define GAIM_DESKTOP_ITEM_FS_TYPE "FSType" /* string */ | |
795 #define GAIM_DESKTOP_ITEM_MOUNT_POINT "MountPoint" /* string */ | |
796 #define GAIM_DESKTOP_ITEM_READ_ONLY "ReadOnly" /* boolean */ | |
797 #define GAIM_DESKTOP_ITEM_UNMOUNT_ICON "UnmountIcon" /* string */ | |
798 #define GAIM_DESKTOP_ITEM_SORT_ORDER "SortOrder" /* strings */ | |
799 #define GAIM_DESKTOP_ITEM_URL "URL" /* string */ | |
800 #define GAIM_DESKTOP_ITEM_DOC_PATH "X-GNOME-DocPath" /* string */ | |
801 | |
802 #define gaim_desktop_item_new_from_file purple_desktop_item_new_from_file | |
803 #define gaim_desktop_item_get_entry_type purple_desktop_item_get_entry_type | |
804 #define gaim_desktop_item_get_string purple_desktop_item_get_string | |
805 #define gaim_desktop_item_copy purple_desktop_item_copy | |
806 #define gaim_desktop_item_unref purple_desktop_item_unref | |
807 | |
808 /* from dnsquery.h */ | |
809 | |
810 #define GaimDnsQueryData PurpleDnsQueryData | |
811 #define GaimDnsQueryConnectFunction PurpleDnsQueryConnectFunction | |
812 | |
813 #define gaim_dnsquery_a purple_dnsquery_a | |
814 #define gaim_dnsquery_destroy purple_dnsquery_destroy | |
815 #define gaim_dnsquery_init purple_dnsquery_init | |
816 #define gaim_dnsquery_uninit purple_dnsquery_uninit | |
817 | |
818 /* from dnssrv.h */ | |
819 | |
820 #define GaimSrvResponse PurpleSrvResponse | |
821 #define GaimSrvQueryData PurpleSrvQueryData | |
822 #define GaimSrvCallback PurpleSrvCallback | |
823 | |
824 #define gaim_srv_resolve purple_srv_resolve | |
825 #define gaim_srv_cancel purple_srv_cancel | |
826 | |
827 /* from eventloop.h */ | |
828 | |
829 #define GAIM_INPUT_READ PURPLE_INPUT_READ | |
830 #define GAIM_INPUT_WRITE PURPLE_INPUT_WRITE | |
831 | |
832 #define GaimInputCondition PurpleInputCondition | |
833 #define GaimInputFunction PurpleInputFunction | |
834 #define GaimEventLoopUiOps PurpleEventLoopUiOps | |
835 | |
836 #define gaim_timeout_add purple_timeout_add | |
837 #define gaim_timeout_remove purple_timeout_remove | |
838 #define gaim_input_add purple_input_add | |
839 #define gaim_input_remove purple_input_remove | |
840 | |
841 #define gaim_eventloop_set_ui_ops purple_eventloop_set_ui_ops | |
842 #define gaim_eventloop_get_ui_ops purple_eventloop_get_ui_ops | |
843 | |
844 /* from ft.h */ | |
845 | |
846 #define GaimXfer PurpleXfer | |
847 | |
848 #define GAIM_XFER_UNKNOWN PURPLE_XFER_UNKNOWN | |
849 #define GAIM_XFER_SEND PURPLE_XFER_SEND | |
850 #define GAIM_XFER_RECEIVE PURPLE_XFER_RECEIVE | |
851 | |
852 #define GaimXferType PurpleXferType | |
853 | |
854 #define GAIM_XFER_STATUS_UNKNOWN PURPLE_XFER_STATUS_UNKNOWN | |
855 #define GAIM_XFER_STATUS_NOT_STARTED PURPLE_XFER_STATUS_NOT_STARTED | |
856 #define GAIM_XFER_STATUS_ACCEPTED PURPLE_XFER_STATUS_ACCEPTED | |
857 #define GAIM_XFER_STATUS_STARTED PURPLE_XFER_STATUS_STARTED | |
858 #define GAIM_XFER_STATUS_DONE PURPLE_XFER_STATUS_DONE | |
859 #define GAIM_XFER_STATUS_CANCEL_LOCAL PURPLE_XFER_STATUS_CANCEL_LOCAL | |
860 #define GAIM_XFER_STATUS_CANCEL_REMOTE PURPLE_XFER_STATUS_CANCEL_REMOTE | |
861 | |
862 #define GaimXferStatusType PurpleXferStatusType | |
863 | |
864 #define GaimXferUiOps PurpleXferUiOps | |
865 | |
866 #define gaim_xfer_new purple_xfer_new | |
867 #define gaim_xfer_ref purple_xfer_ref | |
868 #define gaim_xfer_unref purple_xfer_unref | |
869 #define gaim_xfer_request purple_xfer_request | |
870 #define gaim_xfer_request_accepted purple_xfer_request_accepted | |
871 #define gaim_xfer_request_denied purple_xfer_request_denied | |
872 #define gaim_xfer_get_type purple_xfer_get_type | |
873 #define gaim_xfer_get_account purple_xfer_get_account | |
874 #define gaim_xfer_get_status purple_xfer_get_status | |
875 #define gaim_xfer_is_canceled purple_xfer_is_canceled | |
876 #define gaim_xfer_is_completed purple_xfer_is_completed | |
877 #define gaim_xfer_get_filename purple_xfer_get_filename | |
878 #define gaim_xfer_get_local_filename purple_xfer_get_local_filename | |
879 #define gaim_xfer_get_bytes_sent purple_xfer_get_bytes_sent | |
880 #define gaim_xfer_get_bytes_remaining purple_xfer_get_bytes_remaining | |
881 #define gaim_xfer_get_size purple_xfer_get_size | |
882 #define gaim_xfer_get_progress purple_xfer_get_progress | |
883 #define gaim_xfer_get_local_port purple_xfer_get_local_port | |
884 #define gaim_xfer_get_remote_ip purple_xfer_get_remote_ip | |
885 #define gaim_xfer_get_remote_port purple_xfer_get_remote_port | |
886 #define gaim_xfer_set_completed purple_xfer_set_completed | |
887 #define gaim_xfer_set_message purple_xfer_set_message | |
888 #define gaim_xfer_set_filename purple_xfer_set_filename | |
889 #define gaim_xfer_set_local_filename purple_xfer_set_local_filename | |
890 #define gaim_xfer_set_size purple_xfer_set_size | |
891 #define gaim_xfer_set_bytes_sent purple_xfer_set_bytes_sent | |
892 #define gaim_xfer_get_ui_ops purple_xfer_get_ui_ops | |
893 #define gaim_xfer_set_read_fnc purple_xfer_set_read_fnc | |
894 #define gaim_xfer_set_write_fnc purple_xfer_set_write_fnc | |
895 #define gaim_xfer_set_ack_fnc purple_xfer_set_ack_fnc | |
896 #define gaim_xfer_set_request_denied_fnc purple_xfer_set_request_denied_fnc | |
897 #define gaim_xfer_set_init_fnc purple_xfer_set_init_fnc | |
898 #define gaim_xfer_set_start_fnc purple_xfer_set_start_fnc | |
899 #define gaim_xfer_set_end_fnc purple_xfer_set_end_fnc | |
900 #define gaim_xfer_set_cancel_send_fnc purple_xfer_set_cancel_send_fnc | |
901 #define gaim_xfer_set_cancel_recv_fnc purple_xfer_set_cancel_recv_fnc | |
902 | |
903 #define gaim_xfer_read purple_xfer_read | |
904 #define gaim_xfer_write purple_xfer_write | |
905 #define gaim_xfer_start purple_xfer_start | |
906 #define gaim_xfer_end purple_xfer_end | |
907 #define gaim_xfer_add purple_xfer_add | |
908 #define gaim_xfer_cancel_local purple_xfer_cancel_local | |
909 #define gaim_xfer_cancel_remote purple_xfer_cancel_remote | |
910 #define gaim_xfer_error purple_xfer_error | |
911 #define gaim_xfer_update_progress purple_xfer_update_progress | |
912 #define gaim_xfer_conversation_write purple_xfer_conversation_write | |
913 | |
914 #define gaim_xfers_get_handle purple_xfers_get_handle | |
915 #define gaim_xfers_init purple_xfers_init | |
916 #define gaim_xfers_uninit purple_xfers_uninit | |
917 #define gaim_xfers_set_ui_ops purple_xfers_set_ui_ops | |
918 #define gaim_xfers_get_ui_ops purple_xfers_get_ui_ops | |
919 | |
15468 | 920 /* from gaim-client.h */ |
921 | |
922 /* XXX: should this be purple_init, or pidgin_init */ | |
923 #define gaim_init purple_init | |
924 | |
925 /* from idle.h */ | |
926 | |
927 #define GaimIdleUiOps PurpleIdleUiOps | |
928 | |
929 #define gaim_idle_touch purple_idle_touch | |
930 #define gaim_idle_set purple_idle_set | |
931 #define gaim_idle_set_ui_ops purple_idle_set_ui_ops | |
932 #define gaim_idle_get_ui_ops purple_idle_get_ui_ops | |
933 #define gaim_idle_init purple_idle_init | |
934 #define gaim_idle_uninit purple_idle_uninit | |
935 | |
936 /* from imgstore.h */ | |
937 | |
938 #define GaimStoredImage PurpleStoredImage | |
939 | |
940 #define gaim_imgstore_add purple_imgstore_add | |
941 #define gaim_imgstore_get purple_imgstore_get | |
942 #define gaim_imgstore_get_data purple_imgstore_get_data | |
943 #define gaim_imgstore_get_size purple_imgstore_get_size | |
944 #define gaim_imgstore_get_filename purple_imgstore_get_filename | |
945 #define gaim_imgstore_ref purple_imgstore_ref | |
946 #define gaim_imgstore_unref purple_imgstore_unref | |
947 | |
948 | |
949 /* from log.h */ | |
950 | |
951 #define GaimLog PurpleLog | |
952 #define GaimLogLogger PurpleLogLogger | |
953 #define GaimLogCommonLoggerData PurpleLogCommonLoggerData | |
954 #define GaimLogSet PurpleLogSet | |
955 | |
956 #define GAIM_LOG_IM PURPLE_LOG_IM | |
957 #define GAIM_LOG_CHAT PURPLE_LOG_CHAT | |
958 #define GAIM_LOG_SYSTEM PURPLE_LOG_SYSTEM | |
959 | |
960 #define GaimLogType PurpleLogType | |
961 | |
962 #define GAIM_LOG_READ_NO_NEWLINE PURPLE_LOG_READ_NO_NEWLINE | |
963 | |
964 #define GaimLogReadFlags PurpleLogReadFlags | |
965 | |
966 #define GaimLogSetCallback PurpleLogSetCallback | |
967 | |
968 #define gaim_log_new purple_log_new | |
969 #define gaim_log_free purple_log_free | |
970 #define gaim_log_write purple_log_write | |
971 #define gaim_log_read purple_log_read | |
972 | |
973 #define gaim_log_get_logs purple_log_get_logs | |
974 #define gaim_log_get_log_sets purple_log_get_log_sets | |
975 #define gaim_log_get_system_logs purple_log_get_system_logs | |
976 #define gaim_log_get_size purple_log_get_size | |
977 #define gaim_log_get_total_size purple_log_get_total_size | |
978 #define gaim_log_get_log_dir purple_log_get_log_dir | |
979 #define gaim_log_compare purple_log_compare | |
980 #define gaim_log_set_compare purple_log_set_compare | |
981 #define gaim_log_set_free purple_log_set_free | |
982 | |
983 #define gaim_log_common_writer purple_log_common_writer | |
984 #define gaim_log_common_lister purple_log_common_lister | |
985 #define gaim_log_common_total_sizer purple_log_common_total_sizer | |
986 #define gaim_log_common_sizer purple_log_common_sizer | |
987 | |
988 #define gaim_log_logger_new purple_log_logger_new | |
989 #define gaim_log_logger_free purple_log_logger_free | |
990 #define gaim_log_logger_add purple_log_logger_add | |
991 #define gaim_log_logger_remove purple_log_logger_remove | |
992 #define gaim_log_logger_set purple_log_logger_set | |
993 #define gaim_log_logger_get purple_log_logger_get | |
994 | |
995 #define gaim_log_logger_get_options purple_log_logger_get_options | |
996 | |
997 #define gaim_log_init purple_log_init | |
998 #define gaim_log_get_handle purple_log_get_handle | |
999 #define gaim_log_uninit purple_log_uninit | |
1000 | |
1001 /* from mime.h */ | |
1002 | |
1003 #define GaimMimeDocument PurpleMimeDocument | |
1004 #define GaimMimePart PurpleMimePart | |
1005 | |
1006 #define gaim_mime_document_new purple_mime_document_new | |
1007 #define gaim_mime_document_free purple_mime_document_free | |
1008 #define gaim_mime_document_parse purple_mime_document_parse | |
1009 #define gaim_mime_document_parsen purple_mime_document_parsen | |
1010 #define gaim_mime_document_write purple_mime_document_write | |
1011 #define gaim_mime_document_get_fields purple_mime_document_get_fields | |
1012 #define gaim_mime_document_get_field purple_mime_document_get_field | |
1013 #define gaim_mime_document_set_field purple_mime_document_set_field | |
1014 #define gaim_mime_document_get_parts purple_mime_document_get_parts | |
1015 | |
1016 #define gaim_mime_part_new purple_mime_part_new | |
1017 #define gaim_mime_part_get_fields purple_mime_part_get_fields | |
1018 #define gaim_mime_part_get_field purple_mime_part_get_field | |
1019 #define gaim_mime_part_get_field_decoded purple_mime_part_get_field_decoded | |
1020 #define gaim_mime_part_set_field purple_mime_part_set_field | |
1021 #define gaim_mime_part_get_data purple_mime_part_get_data | |
1022 #define gaim_mime_part_get_data_decoded purple_mime_part_get_data_decoded | |
1023 #define gaim_mime_part_get_length purple_mime_part_get_length | |
1024 #define gaim_mime_part_set_data purple_mime_part_set_data | |
1025 | |
1026 | |
1027 /* from network.h */ | |
1028 | |
1029 #define GaimNetworkListenData PurpleNetworkListenData | |
1030 | |
1031 #define GaimNetworkListenCallback PurpleNetworkListenCallback | |
1032 | |
1033 #define gaim_network_ip_atoi purple_network_ip_atoi | |
1034 #define gaim_network_set_public_ip purple_network_set_public_ip | |
1035 #define gaim_network_get_public_ip purple_network_get_public_ip | |
1036 #define gaim_network_get_local_system_ip purple_network_get_local_system_ip | |
1037 #define gaim_network_get_my_ip purple_network_get_my_ip | |
1038 | |
1039 #define gaim_network_listen purple_network_listen | |
1040 #define gaim_network_listen_range purple_network_listen_range | |
1041 #define gaim_network_listen_cancel purple_network_listen_cancel | |
1042 #define gaim_network_get_port_from_fd purple_network_get_port_from_fd | |
1043 | |
1044 #define gaim_network_is_available purple_network_is_available | |
1045 | |
1046 #define gaim_network_init purple_network_init | |
1047 #define gaim_network_uninit purple_network_uninit | |
1048 | |
1049 /* from notify.h */ | |
1050 | |
1051 | |
1052 #define GaimNotifyUserInfoEntry PurpleNotifyUserInfoEntry | |
1053 #define GaimNotifyUserInfo PurpleNotifyUserInfo | |
1054 | |
1055 #define GaimNotifyCloseCallback PurpleNotifyCloseCallback | |
1056 | |
1057 #define GAIM_NOTIFY_MESSAGE PURPLE_NOTIFY_MESSAGE | |
1058 #define GAIM_NOTIFY_EMAIL PURPLE_NOTIFY_EMAIL | |
1059 #define GAIM_NOTIFY_EMAILS PURPLE_NOTIFY_EMAILS | |
1060 #define GAIM_NOTIFY_FORMATTED PURPLE_NOTIFY_FORMATTED | |
1061 #define GAIM_NOTIFY_SEARCHRESULTS PURPLE_NOTIFY_SEARCHRESULTS | |
1062 #define GAIM_NOTIFY_USERINFO PURPLE_NOTIFY_USERINFO | |
1063 #define GAIM_NOTIFY_URI PURPLE_NOTIFY_URI | |
1064 | |
1065 #define GaimNotifyType PurpleNotifyType | |
1066 | |
1067 #define GAIM_NOTIFY_MSG_ERROR PURPLE_NOTIFY_MSG_ERROR | |
1068 #define GAIM_NOTIFY_MSG_WARNING PURPLE_NOTIFY_MSG_WARNING | |
1069 #define GAIM_NOTIFY_MSG_INFO PURPLE_NOTIFY_MSG_INFO | |
1070 | |
1071 #define GaimNotifyMsgType PurpleNotifyMsgType | |
1072 | |
1073 #define GAIM_NOTIFY_BUTTON_LABELED PURPLE_NOTIFY_BUTTON_LABELED | |
1074 #define GAIM_NOTIFY_BUTTON_CONTINUE PURPLE_NOTIFY_BUTTON_CONTINUE | |
1075 #define GAIM_NOTIFY_BUTTON_ADD PURPLE_NOTIFY_BUTTON_ADD | |
1076 #define GAIM_NOTIFY_BUTTON_INFO PURPLE_NOTIFY_BUTTON_INFO | |
1077 #define GAIM_NOTIFY_BUTTON_IM PURPLE_NOTIFY_BUTTON_IM | |
1078 #define GAIM_NOTIFY_BUTTON_JOIN PURPLE_NOTIFY_BUTTON_JOIN | |
1079 #define GAIM_NOTIFY_BUTTON_INVITE PURPLE_NOTIFY_BUTTON_INVITE | |
1080 | |
1081 #define GaimNotifySearchButtonType PurpleNotifySearchButtonType | |
1082 | |
1083 #define GaimNotifySearchResults PurpleNotifySearchResult | |
1084 | |
1085 #define GAIM_NOTIFY_USER_INFO_ENTRY_PAIR PURPLE_NOTIFY_USER_INFO_ENTRY_PAIR | |
1086 #define GAIM_NOTIFY_USER_INFO_ENTRY_SECTION_BREAK PURPLE_NOTIFY_USER_INFO_ENTRY_SECTION_BREAK | |
1087 #define GAIM_NOTIFY_USER_INFO_ENTRY_SECTION_HEADER PURPLE_NOTIFY_USER_INFO_ENTRY_SECTION_HEADER | |
1088 | |
1089 #define GaimNotifyUserInfoEntryType PurpleNotifyUserInfoEntryType | |
1090 | |
1091 #define GaimNotifySearchColumn PurpleNotifySearchColumn | |
1092 #define GaimNotifySearchResultsCallback PurpleNotifySearchResultsCallback | |
1093 #define GaimNotifySearchButton PurpleNotifySearchButton | |
1094 | |
1095 #define GaimNotifyUiOps PurpleNotifyUiOps | |
1096 | |
1097 #define gaim_notify_searchresults purple_notify_searchresults | |
1098 #define gaim_notify_searchresults_free purple_notify_searchresults_free | |
1099 #define gaim_notify_searchresults_new_rows purple_notify_searchresults_new_rows | |
1100 #define gaim_notify_searchresults_button_add purple_notify_searchresults_button_add | |
1101 #define gaim_notify_searchresults_button_add_labeled purple_notify_searchresults_button_add_labeled | |
1102 #define gaim_notify_searchresults_new purple_notify_searchresults_new | |
1103 #define gaim_notify_searchresults_column_new purple_notify_searchresults_column_new | |
1104 #define gaim_notify_searchresults_column_add purple_notify_searchresults_column_add | |
1105 #define gaim_notify_searchresults_row_add purple_notify_searchresults_row_add | |
1106 #define gaim_notify_searchresults_get_rows_count purple_notify_searchresults_get_rows_count | |
1107 #define gaim_notify_searchresults_get_columns_count purple_notify_searchresults_get_columns_count | |
1108 #define gaim_notify_searchresults_row_get purple_notify_searchresults_row_get | |
1109 #define gaim_notify_searchresults_column_get_title purple_notify_searchresults_column_get_title | |
1110 | |
1111 #define gaim_notify_message purple_notify_message | |
1112 #define gaim_notify_email purple_notify_email | |
1113 #define gaim_notify_emails purple_notify_emails | |
1114 #define gaim_notify_formatted purple_notify_formatted | |
1115 #define gaim_notify_userinfo purple_notify_userinfo | |
1116 | |
1117 #define gaim_notify_user_info_new purple_notify_user_info_new | |
1118 #define gaim_notify_user_info_destroy purple_notify_user_info_destroy | |
1119 #define gaim_notify_user_info_get_entries purple_notify_user_info_get_entries | |
1120 #define gaim_notify_user_info_get_text_with_newline purple_notify_user_info_get_text_with_newline | |
1121 #define gaim_notify_user_info_add_pair purple_notify_user_info_add_pair | |
1122 #define gaim_notify_user_info_prepend_pair purple_notify_user_info_prepend_pair | |
1123 #define gaim_notify_user_info_remove_entry purple_notify_user_info_remove_entry | |
1124 #define gaim_notify_user_info_entry_new purple_notify_user_info_entry_new | |
1125 #define gaim_notify_user_info_add_section_break purple_notify_user_info_add_section_break | |
1126 #define gaim_notify_user_info_add_section_header purple_notify_user_info_add_section_header | |
1127 #define gaim_notify_user_info_remove_last_item purple_notify_user_info_remove_last_item | |
1128 #define gaim_notify_user_info_entry_get_label purple_notify_user_info_entry_get_label | |
1129 #define gaim_notify_user_info_entry_set_label purple_notify_user_info_entry_set_label | |
1130 #define gaim_notify_user_info_entry_get_value purple_notify_user_info_entry_get_value | |
1131 #define gaim_notify_user_info_entry_set_value purple_notify_user_info_entry_set_value | |
1132 #define gaim_notify_user_info_entry_get_type purple_notify_user_info_entry_get_type | |
1133 #define gaim_notify_user_info_entry_set_type purple_notify_user_info_entry_set_type | |
1134 | |
1135 #define gaim_notify_uri purple_notify_uri | |
1136 #define gaim_notify_close purple_notify_close | |
1137 #define gaim_notify_close_with_handle purple_notify_close_with_handle | |
1138 | |
1139 #define gaim_notify_info purple_notify_info | |
1140 #define gaim_notify_warning purple_notify_warning | |
1141 #define gaim_notify_error purple_notify_error | |
1142 | |
1143 #define gaim_notify_set_ui_ops purple_notify_set_ui_ops | |
1144 #define gaim_notify_get_ui_ops purple_notify_get_ui_ops | |
1145 | |
1146 #define gaim_notify_get_handle purple_notify_get_handle | |
1147 | |
1148 #define gaim_notify_init purple_notify_init | |
1149 #define gaim_notify_uninit purple_notify_uninit | |
1150 | |
15511
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1151 /* from ntlm.h */ |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1152 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1153 #define gaim_ntlm_gen_type1 purple_ntlm_gen_type1 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1154 #define gaim_ntlm_parse_type2 purple_ntlm_parse_type2 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1155 #define gaim_ntlm_gen_type3 purple_ntlm_gen_type3 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1156 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1157 /* from plugin.h */ |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1158 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1159 #define GaimPlugin PurplePlugin |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1160 #define GaimPluginInfo PurplePluginInfo |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1161 #define GaimPluginUiInfo PurplePluginUiInfo |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1162 #define GaimPluginLoaderInfo PurplePluginLoaderInfo |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1163 #define GaimPluginAction PurplePluginAction |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1164 #define GaimPluginPriority PurplePluginPriority |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1165 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1166 #define GAIM_PLUGIN_UNKNOWN PURPLE_PLUGIN_UNKNOWN |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1167 #define GAIM_PLUGIN_STANDARD PURPLE_PLUGIN_STANDARD |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1168 #define GAIM_PLUGIN_LOADER PURPLE_PLUGIN_LOADER |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1169 #define GAIM_PLUGIN_PROTOCOL PURPLE_PLUGIN_PROTOCOL |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1170 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1171 #define GaimPluginType PurplePluginType |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1172 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1173 #define GAIM_PRIORITY_DEFAULT PURPLE_PRIORITY_DEFAULT |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1174 #define GAIM_PRIORITY_HIGHEST PURPLE_PRIORITY_HIGHEST |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1175 #define GAIM_PRIORITY_LOWEST PURPLE_PRIORITY_LOWEST |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1176 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1177 #define GAIM_PLUGIN_FLAG_INVISIBLE PURPLE_PLUGIN_FLAG_INVISIBLE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1178 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1179 #define GAIM_PLUGIN_MAGIC PURPLE_PLUGIN_MAGIC |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1180 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1181 #define GAIM_PLUGIN_LOADER_INFO PURPLE_PLUGIN_LOADER_INFO |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1182 #define GAIM_PLUGIN_HAS_PREF_FRAME PURPLE_PLUGIN_HAS_PREF_FRAME |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1183 #define GAIM_PLUGIN_UI_INFO PURPLE_PLUGIN_UI_INFO |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1184 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1185 #define GAIM_PLUGIN_HAS_ACTIONS PURPLE_PLUGIN_HAS_ACTIONS |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1186 #define GAIM_PLUGIN_ACTIONS PURPLE_PLUGIN_ACTIONS |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1187 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1188 #define GAIM_INIT_PLUGIN PURPLE_INIT_PLUGIN |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1189 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1190 #define gaim_plugin_new purple_plugin_new |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1191 #define gaim_plugin_probe purple_plugin_probe |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1192 #define gaim_plugin_register purple_plugin_register |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1193 #define gaim_plugin_load purple_plugin_load |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1194 #define gaim_plugin_unload purple_plugin_unload |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1195 #define gaim_plugin_reload purple_plugin_reload |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1196 #define gaim_plugin_destroy purple_plugin_destroy |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1197 #define gaim_plugin_is_loaded purple_plugin_is_loaded |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1198 #define gaim_plugin_is_unloadable purple_plugin_is_unloadable |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1199 #define gaim_plugin_get_id purple_plugin_get_id |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1200 #define gaim_plugin_get_name purple_plugin_get_name |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1201 #define gaim_plugin_get_version purple_plugin_get_version |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1202 #define gaim_plugin_get_summary purple_plugin_get_summary |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1203 #define gaim_plugin_get_description purple_plugin_get_description |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1204 #define gaim_plugin_get_author purple_plugin_get_author |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1205 #define gaim_plugin_get_homepage purple_plugin_get_homepage |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1206 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1207 #define gaim_plugin_ipc_register purple_plugin_ipc_register |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1208 #define gaim_plugin_ipc_unregister purple_plugin_ipc_unregister |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1209 #define gaim_plugin_ipc_unregister_all purple_plugin_ipc_unregister_all |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1210 #define gaim_plugin_ipc_get_params purple_plugin_ipc_get_params |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1211 #define gaim_plugin_ipc_call purple_plugin_ipc_call |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1212 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1213 #define gaim_plugins_add_search_path purple_plugins_add_search_path |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1214 #define gaim_plugins_unload_all purple_plugins_unload_all |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1215 #define gaim_plugins_destroy_all purple_plugins_destroy_all |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1216 #define gaim_plugins_save_loaded purple_plugins_save_loaded |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1217 #define gaim_plugins_load_saved purple_plugins_load_saved |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1218 #define gaim_plugins_probe purple_plugins_probe |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1219 #define gaim_plugins_enabled purple_plugins_enabled |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1220 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1221 #define gaim_plugins_register_probe_notify_cb purple_plugins_register_probe_notify_cb |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1222 #define gaim_plugins_unregister_probe_notify_cb purple_plugins_unregister_probe_notify_cb |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1223 #define gaim_plugins_register_load_notify_cb purple_plugins_register_load_notify_cb |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1224 #define gaim_plugins_unregister_load_notify_cb purple_plugins_unregister_load_notify_cb |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1225 #define gaim_plugins_register_unload_notify_cb purple_plugins_register_unload_notify_cb |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1226 #define gaim_plugins_unregister_unload_notify_cb purple_plugins_unregister_unload_notify_cb |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1227 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1228 #define gaim_plugins_find_with_name purple_plugins_find_with_name |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1229 #define gaim_plugins_find_with_filename purple_plugins_find_with_filename |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1230 #define gaim_plugins_find_with_basename purple_plugins_find_with_basename |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1231 #define gaim_plugins_find_with_id purple_plugins_find_with_id |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1232 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1233 #define gaim_plugins_get_loaded purple_plugins_get_loaded |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1234 #define gaim_plugins_get_protocols purple_plugins_get_protocols |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1235 #define gaim_plugins_get_all purple_plugins_get_all |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1236 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1237 #define gaim_plugins_get_handle purple_plugins_get_handle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1238 #define gaim_plugins_init purple_plugins_init |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1239 #define gaim_plugins_uninit purple_plugins_uninit |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1240 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1241 #define gaim_plugin_action_new purple_plugin_action_new |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1242 #define gaim_plugin_action_free purple_plugin_action_free |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1243 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1244 /* pluginpref.h */ |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1245 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1246 #define GaimPluginPrefFrame PurplePluginPrefFrame |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1247 #define GaimPluginPref PurplePluginPref |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1248 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1249 #define GAIM_STRING_FORMAT_TYPE_NONE PURPLE_STRING_FORMAT_TYPE_NONE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1250 #define GAIM_STRING_FORMAT_TYPE_MULTILINE PURPLE_STRING_FORMAT_TYPE_MULTILINE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1251 #define GAIM_STRING_FORMAT_TYPE_HTML PURPLE_STRING_FORMAT_TYPE_HTML |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1252 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1253 #define GaimStringFormatType PurpleStringFormatType |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1254 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1255 #define GAIM_PLUGIN_PREF_NONE PURPLE_PLUGIN_PREF_NONE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1256 #define GAIM_PLUGIN_PREF_CHOICE PURPLE_PLUGIN_PREF_CHOICE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1257 #define GAIM_PLUGIN_PREF_INFO PURPLE_PLUGIN_PREF_INFO |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1258 #define GAIM_PLUGIN_PREF_STRING_FORMAT PURPLE_PLUGIN_PREF_STRING_FORMAT |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1259 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1260 #define GaimPluginPrefType PurplePluginPrefType |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1261 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1262 #define gaim_plugin_pref_frame_new purple_plugin_pref_frame_new |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1263 #define gaim_plugin_pref_frame_destroy purple_plugin_pref_frame_destroy |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1264 #define gaim_plugin_pref_frame_add purple_plugin_pref_frame_add |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1265 #define gaim_plugin_pref_frame_get_prefs purple_plugin_pref_frame_get_prefs |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1266 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1267 #define gaim_plugin_pref_new purple_plugin_pref_new |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1268 #define gaim_plugin_pref_new_with_name purple_plugin_pref_new_with_name |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1269 #define gaim_plugin_pref_new_with_label purple_plugin_pref_new_with_label |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1270 #define gaim_plugin_pref_new_with_name_and_label purple_plugin_pref_new_with_name_and_label |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1271 #define gaim_plugin_pref_destroy purple_plugin_pref_destroy |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1272 #define gaim_plugin_pref_set_name purple_plugin_pref_set_name |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1273 #define gaim_plugin_pref_get_name purple_plugin_pref_get_name |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1274 #define gaim_plugin_pref_set_label purple_plugin_pref_set_label |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1275 #define gaim_plugin_pref_get_label purple_plugin_pref_get_label |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1276 #define gaim_plugin_pref_set_bounds purple_plugin_pref_set_bounds |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1277 #define gaim_plugin_pref_get_bounds purple_plugin_pref_get_bounds |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1278 #define gaim_plugin_pref_set_type purple_plugin_pref_set_type |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1279 #define gaim_plugin_pref_get_type purple_plugin_pref_get_type |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1280 #define gaim_plugin_pref_add_choice purple_plugin_pref_add_choice |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1281 #define gaim_plugin_pref_get_choices purple_plugin_pref_get_choices |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1282 #define gaim_plugin_pref_set_max_length purple_plugin_pref_set_max_length |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1283 #define gaim_plugin_pref_get_max_length purple_plugin_pref_get_max_length |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1284 #define gaim_plugin_pref_set_masked purple_plugin_pref_set_masked |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1285 #define gaim_plugin_pref_get_masked purple_plugin_pref_get_masked |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1286 #define gaim_plugin_pref_set_format_type purple_plugin_pref_set_format_type |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1287 #define gaim_plugin_pref_get_format_type purple_plugin_pref_get_format_type |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1288 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1289 /* from pounce.h */ |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1290 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1291 #define GaimPounce PurplePounce |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1292 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1293 #define GAIM_POUNCE_NONE PURPLE_POUNCE_NONE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1294 #define GAIM_POUNCE_SIGNON PURPLE_POUNCE_SIGNON |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1295 #define GAIM_POUNCE_SIGNOFF PURPLE_POUNCE_SIGNOFF |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1296 #define GAIM_POUNCE_AWAY PURPLE_POUNCE_AWAY |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1297 #define GAIM_POUNCE_AWAY_RETURN PURPLE_POUNCE_AWAY_RETURN |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1298 #define GAIM_POUNCE_IDLE PURPLE_POUNCE_IDLE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1299 #define GAIM_POUNCE_IDLE_RETURN PURPLE_POUNCE_IDLE_RETURN |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1300 #define GAIM_POUNCE_TYPING PURPLE_POUNCE_TYPING |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1301 #define GAIM_POUNCE_TYPED PURPLE_POUNCE_TYPED |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1302 #define GAIM_POUNCE_TYPING_STOPPED PURPLE_POUNCE_TYPING_STOPPED |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1303 #define GAIM_POUNCE_MESSAGE_RECEIVED PURPLE_POUNCE_MESSAGE_RECEIVED |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1304 #define GaimPounceEvent PurplePounceEvent |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1305 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1306 #define GAIM_POUNCE_OPTION_NONE PURPLE_POUNCE_OPTION_NONE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1307 #define GAIM_POUNCE_OPTION_AWAY PURPLE_POUNCE_OPTION_AWAY |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1308 #define GaimPounceOption PurplePounceOption |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1309 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1310 #define GaimPounceCb PurplePounceCb |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1311 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1312 #define gaim_pounce_new purple_pounce_new |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1313 #define gaim_pounce_destroy purple_pounce_destroy |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1314 #define gaim_pounce_destroy_all_by_account purple_pounce_destroy_all_by_account |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1315 #define gaim_pounce_set_events purple_pounce_set_events |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1316 #define gaim_pounce_set_options purple_pounce_set_options |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1317 #define gaim_pounce_set_pouncer purple_pounce_set_pouncer |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1318 #define gaim_pounce_set_pouncee purple_pounce_set_pouncee |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1319 #define gaim_pounce_set_save purple_pounce_set_save |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1320 #define gaim_pounce_action_register purple_pounce_action_register |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1321 #define gaim_pounce_action_set_enabled purple_pounce_action_set_enabled |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1322 #define gaim_pounce_action_set_attribute purple_pounce_action_set_attribute |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1323 #define gaim_pounce_set_data purple_pounce_set_data |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1324 #define gaim_pounce_get_events purple_pounce_get_events |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1325 #define gaim_pounce_get_options purple_pounce_get_options |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1326 #define gaim_pounce_get_pouncer purple_pounce_get_pouncer |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1327 #define gaim_pounce_get_pouncee purple_pounce_get_pouncee |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1328 #define gaim_pounce_get_save purple_pounce_get_save |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1329 #define gaim_pounce_action_is_enabled purple_pounce_action_is_enabled |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1330 #define gaim_pounce_action_get_attribute purple_pounce_action_get_attribute |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1331 #define gaim_pounce_get_data purple_pounce_get_data |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1332 #define gaim_pounce_execute purple_pounce_execute |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1333 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1334 #define gaim_find_pounce purple_find_pounce |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1335 #define gaim_pounces_load purple_pounces_load |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1336 #define gaim_pounces_register_handler purple_pounces_register_handler |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1337 #define gaim_pounces_unregister_handler purple_pounces_unregister_handler |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1338 #define gaim_pounces_get_all purple_pounces_get_all |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1339 #define gaim_pounces_get_handle purple_pounces_get_handle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1340 #define gaim_pounces_init purple_pounces_init |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1341 #define gaim_pounces_uninit purple_pounces_uninit |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1342 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1343 /* from prefs.h */ |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1344 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1345 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1346 #define GAIM_PREF_NONE PURPLE_PREF_NONE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1347 #define GAIM_PREF_BOOLEAN PURPLE_PREF_BOOLEAN |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1348 #define GAIM_PREF_INT PURPLE_PREF_INT |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1349 #define GAIM_PREF_STRING PURPLE_PREF_STRING |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1350 #define GAIM_PREF_STRING_LIST PURPLE_PREF_STRING_LIST |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1351 #define GAIM_PREF_PATH PURPLE_PREF_PATH |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1352 #define GAIM_PREF_PATH_LIST PURPLE_PREF_PATH_LIST |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1353 #define GaimPrefType PurplePrefType |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1354 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1355 #define GaimPrefCallback PurplePrefCallback |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1356 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1357 #define gaim_prefs_get_handle purple_prefs_get_handle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1358 #define gaim_prefs_init purple_prefs_init |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1359 #define gaim_prefs_uninit purple_prefs_uninit |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1360 #define gaim_prefs_add_none purple_prefs_add_none |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1361 #define gaim_prefs_add_bool purple_prefs_add_bool |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1362 #define gaim_prefs_add_int purple_prefs_add_int |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1363 #define gaim_prefs_add_string purple_prefs_add_string |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1364 #define gaim_prefs_add_string_list purple_prefs_add_string_list |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1365 #define gaim_prefs_add_path purple_prefs_add_path |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1366 #define gaim_prefs_add_path_list purple_prefs_add_path_list |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1367 #define gaim_prefs_remove purple_prefs_remove |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1368 #define gaim_prefs_rename purple_prefs_rename |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1369 #define gaim_prefs_rename_boolean_toggle purple_prefs_rename_boolean_toggle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1370 #define gaim_prefs_destroy purple_prefs_destroy |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1371 #define gaim_prefs_set_generic purple_prefs_set_generic |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1372 #define gaim_prefs_set_bool purple_prefs_set_bool |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1373 #define gaim_prefs_set_int purple_prefs_set_int |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1374 #define gaim_prefs_set_string purple_prefs_set_string |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1375 #define gaim_prefs_set_string_list purple_prefs_set_string_list |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1376 #define gaim_prefs_set_path purple_prefs_set_path |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1377 #define gaim_prefs_set_path_list purple_prefs_set_path_list |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1378 #define gaim_prefs_exists purple_prefs_exists |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1379 #define gaim_prefs_get_type purple_prefs_get_type |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1380 #define gaim_prefs_get_bool purple_prefs_get_bool |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1381 #define gaim_prefs_get_int purple_prefs_get_int |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1382 #define gaim_prefs_get_string purple_prefs_get_string |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1383 #define gaim_prefs_get_string_list purple_prefs_get_string_list |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1384 #define gaim_prefs_get_path purple_prefs_get_path |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1385 #define gaim_prefs_get_path_list purple_prefs_get_path_list |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1386 #define gaim_prefs_connect_callback purple_prefs_connect_callback |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1387 #define gaim_prefs_disconnect_callback purple_prefs_disconnect_callback |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1388 #define gaim_prefs_disconnect_by_handle purple_prefs_disconnect_by_handle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1389 #define gaim_prefs_trigger_callback purple_prefs_trigger_callback |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1390 #define gaim_prefs_load purple_prefs_load |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1391 #define gaim_prefs_update_old purple_prefs_update_old |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1392 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1393 /* from privacy.h */ |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1394 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1395 #define GAIM_PRIVACY_ALLOW_ALL PURPLE_PRIVACY_ALLOW_ALL |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1396 #define GAIM_PRIVACY_DENY_ALL PURPLE_PRIVACY_DENY_ALL |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1397 #define GAIM_PRIVACY_ALLOW_USERS PURPLE_PRIVACY_ALLOW_USERS |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1398 #define GAIM_PRIVACY_DENY_USERS PURPLE_PRIVACY_DENY_USERS |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1399 #define GAIM_PRIVACY_ALLOW_BUDDYLIST PURPLE_PRIVACY_ALLOW_BUDDYLIST |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1400 #define GaimPrivacyType PurplePrivacyType |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1401 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1402 #define GaimPrivacyUiOps PurplePrivacyUiOps |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1403 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1404 #define gaim_privacy_permit_add purple_privacy_permit_add |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1405 #define gaim_privacy_permit_remove purple_privacy_permit_remove |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1406 #define gaim_privacy_deny_add purple_privacy_deny_add |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1407 #define gaim_privacy_deny_remove purple_privacy_deny_remove |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1408 #define gaim_privacy_allow purple_privacy_allow |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1409 #define gaim_privacy_deny purple_privacy_deny |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1410 #define gaim_privacy_check purple_privacy_check |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1411 #define gaim_privacy_set_ui_ops purple_privacy_set_ui_ops |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1412 #define gaim_privacy_get_ui_ops purple_privacy_get_ui_ops |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1413 #define gaim_privacy_init purple_privacy_init |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1414 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1415 /* from proxy.h */ |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1416 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1417 #define GAIM_PROXY_USE_GLOBAL PURPLE_PROXY_USE_GLOBAL |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1418 #define GAIM_PROXY_NONE PURPLE_PROXY_NONE |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1419 #define GAIM_PROXY_HTTP PURPLE_PROXY_HTTP |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1420 #define GAIM_PROXY_SOCKS4 PURPLE_PROXY_SOCKS4 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1421 #define GAIM_PROXY_SOCKS5 PURPLE_PROXY_SOCKS5 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1422 #define GAIM_PROXY_USE_ENVVAR PURPLE_PROXY_USE_ENVVAR |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1423 #define GaimProxyType PurpleProxyType |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1424 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1425 #define GaimProxyInfo PurpleProxyInfo |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1426 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1427 #define GaimProxyConnectData PurpleProxyConnectData |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1428 #define GaimProxyConnectFunction PurpleProxyConnectFunction |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1429 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1430 #define gaim_proxy_info_new purple_proxy_info_new |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1431 #define gaim_proxy_info_destroy purple_proxy_info_destroy |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1432 #define gaim_proxy_info_set_type purple_proxy_info_set_type |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1433 #define gaim_proxy_info_set_host purple_proxy_info_set_host |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1434 #define gaim_proxy_info_set_port purple_proxy_info_set_port |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1435 #define gaim_proxy_info_set_username purple_proxy_info_set_username |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1436 #define gaim_proxy_info_set_password purple_proxy_info_set_password |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1437 #define gaim_proxy_info_get_type purple_proxy_info_get_type |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1438 #define gaim_proxy_info_get_host purple_proxy_info_get_host |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1439 #define gaim_proxy_info_get_port purple_proxy_info_get_port |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1440 #define gaim_proxy_info_get_username purple_proxy_info_get_username |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1441 #define gaim_proxy_info_get_password purple_proxy_info_get_password |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1442 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1443 #define gaim_global_proxy_get_info purple_global_proxy_get_info |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1444 #define gaim_proxy_get_handle purple_proxy_get_handle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1445 #define gaim_proxy_init purple_proxy_init |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1446 #define gaim_proxy_uninit purple_proxy_uninit |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1447 #define gaim_proxy_get_setup purple_proxy_get_setup |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1448 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1449 #define gaim_proxy_connect purple_proxy_connect |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1450 #define gaim_proxy_connect_socks5 purple_proxy_connect_socks5 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1451 #define gaim_proxy_connect_cancel purple_proxy_connect_cancel |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1452 #define gaim_proxy_connect_cancel_with_handle purple_proxy_connect_cancel_with_handle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1453 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1454 /* from prpl.h */ |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1455 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1456 #define GaimPluginProtocolInfo PurplePluginProtocolInfo |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1457 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1458 #define GAIM_ICON_SCALE_DISPLAY PURPLE_ICON_SCALE_DISPLAY |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1459 #define GAIM_ICON_SCALE_SEND PURPLE_ICON_SCALE_SEND |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1460 #define GaimIconScaleRules PurpleIconScaleRules |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1461 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1462 #define GaimBuddyIconSpec PurpleBuddyIconSpec |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1463 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1464 #define GaimProtocolOptions PurpleProtocolOptions |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1465 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1466 #define GAIM_IS_PROTOCOL_PLUGIN PURPLE_IS_PROTOCOL_PLUGIN |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1467 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1468 #define GAIM_PLUGIN_PROTOCOL_INFO PURPLE_PLUGIN_PROTOCOL_INFO |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1469 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1470 #define gaim_prpl_got_account_idle purple_prpl_got_account_idle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1471 #define gaim_prpl_got_account_login_time purple_prpl_got_account_login_time |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1472 #define gaim_prpl_got_account_status purple_prpl_got_account_status |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1473 #define gaim_prpl_got_user_idle purple_prpl_got_user_idle |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1474 #define gaim_prpl_got_user_login_time purple_prpl_got_user_login_time |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1475 #define gaim_prpl_got_user_status purple_prpl_got_user_status |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1476 #define gaim_prpl_change_account_status purple_prpl_change_account_status |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1477 #define gaim_prpl_get_statuses purple_prpl_get_statuses |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1478 |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1479 #define gaim_find_prpl purple_find_prpl |
e3cbf79af897
more compat header...getting close to being done with the libpurple half
Nathan Walp <nwalp@pidgin.im>
parents:
15468
diff
changeset
|
1480 |
15545
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1481 /* from request.h */ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1482 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1483 #define GAIM_DEFAULT_ACTION_NONE PURPLE_DEFAULT_ACTION_NONE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1484 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1485 #define GAIM_REQUEST_INPUT PURPLE_REQUEST_INPUT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1486 #define GAIM_REQUEST_CHOICE PURPLE_REQUEST_CHOICE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1487 #define GAIM_REQUEST_ACTION PURPLE_REQUEST_ACTION |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1488 #define GAIM_REQUEST_FIELDS PURPLE_REQUEST_FIELDS |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1489 #define GAIM_REQUEST_FILE PURPLE_REQUEST_FILE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1490 #define GAIM_REQUEST_FOLDER PURPLE_REQUEST_FOLDER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1491 #define GaimRequestType PurpleRequestType |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1492 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1493 #define GAIM_REQUEST_FIELD_NONE PURPLE_REQUEST_FIELD_NONE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1494 #define GAIM_REQUEST_FIELD_STRING PURPLE_REQUEST_FIELD_STRING |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1495 #define GAIM_REQUEST_FIELD_INTEGER PURPLE_REQUEST_FIELD_INTEGER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1496 #define GAIM_REQUEST_FIELD_BOOLEAN PURPLE_REQUEST_FIELD_BOOLEAN |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1497 #define GAIM_REQUEST_FIELD_CHOICE PURPLE_REQUEST_FIELD_CHOICE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1498 #define GAIM_REQUEST_FIELD_LIST PURPLE_REQUEST_FIELD_LIST |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1499 #define GAIM_REQUEST_FIELD_LABEL PURPLE_REQUEST_FIELD_LABEL |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1500 #define GAIM_REQUEST_FIELD_IMAGE PURPLE_REQUEST_FIELD_IMAGE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1501 #define GAIM_REQUEST_FIELD_ACCOUNT PURPLE_REQUEST_FIELD_ACCOUNT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1502 #define GaimRequestFieldType PurpleRequestFieldType |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1503 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1504 #define GaimRequestFields PurpleRequestFields |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1505 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1506 #define GaimRequestFieldGroup PurpleRequestFieldGroup |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1507 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1508 #define GaimRequestField PurpleRequestField |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1509 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1510 #define GaimRequestUiOps PurpleRequestUiOps |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1511 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1512 #define GaimRequestInputCb PurpleRequestInputCb |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1513 #define GaimRequestActionCb PurpleRequestActionCb |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1514 #define GaimRequestChoiceCb PurpleRequestChoiceCb |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1515 #define GaimRequestFieldsCb PurpleRequestFieldsCb |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1516 #define GaimRequestFileCb PurpleRequestFileCb |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1517 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1518 #define gaim_request_fields_new purple_request_fields_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1519 #define gaim_request_fields_destroy purple_request_fields_destroy |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1520 #define gaim_request_fields_add_group purple_request_fields_add_group |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1521 #define gaim_request_fields_get_groups purple_request_fields_get_groups |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1522 #define gaim_request_fields_exists purple_request_fields_exists |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1523 #define gaim_request_fields_get_required purple_request_fields_get_required |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1524 #define gaim_request_fields_is_field_required purple_request_fields_is_field_required |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1525 #define gaim_request_fields_all_required_filled purple_request_fields_all_required_filled |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1526 #define gaim_request_fields_get_field purple_request_fields_get_field |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1527 #define gaim_request_fields_get_string purple_request_fields_get_string |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1528 #define gaim_request_fields_get_integer purple_request_fields_get_integer |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1529 #define gaim_request_fields_get_bool purple_request_fields_get_bool |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1530 #define gaim_request_fields_get_choice purple_request_fields_get_choice |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1531 #define gaim_request_fields_get_account purple_request_fields_get_account |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1532 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1533 #define gaim_request_field_group_new purple_request_field_group_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1534 #define gaim_request_field_group_destroy purple_request_field_group_destroy |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1535 #define gaim_request_field_group_add_field purple_request_field_group_add_field |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1536 #define gaim_request_field_group_get_title purple_request_field_group_get_title |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1537 #define gaim_request_field_group_get_fields purple_request_field_group_get_fields |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1538 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1539 #define gaim_request_field_new purple_request_field_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1540 #define gaim_request_field_destroy purple_request_field_destroy |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1541 #define gaim_request_field_set_label purple_request_field_set_label |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1542 #define gaim_request_field_set_visible purple_request_field_set_visible |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1543 #define gaim_request_field_set_type_hint purple_request_field_set_type_hint |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1544 #define gaim_request_field_set_required purple_request_field_set_required |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1545 #define gaim_request_field_get_type purple_request_field_get_type |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1546 #define gaim_request_field_get_id purple_request_field_get_id |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1547 #define gaim_request_field_get_label purple_request_field_get_label |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1548 #define gaim_request_field_is_visible purple_request_field_is_visible |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1549 #define gaim_request_field_get_type_hint purple_request_field_get_type_hint |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1550 #define gaim_request_field_is_required purple_request_field_is_required |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1551 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1552 #define gaim_request_field_string_new purple_request_field_string_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1553 #define gaim_request_field_string_set_default_value \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1554 purple_request_field_string_set_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1555 #define gaim_request_field_string_set_value purple_request_field_string_set_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1556 #define gaim_request_field_string_set_masked purple_request_field_string_set_masked |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1557 #define gaim_request_field_string_set_editable purple_request_field_string_set_editable |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1558 #define gaim_request_field_string_get_default_value \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1559 purple_request_field_string_get_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1560 #define gaim_request_field_string_get_value purple_request_field_string_get_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1561 #define gaim_request_field_string_is_multiline purple_request_field_string_is_multiline |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1562 #define gaim_request_field_string_is_masked purple_request_field_string_is_masked |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1563 #define gaim_request_field_string_is_editable purple_request_field_string_is_editable |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1564 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1565 #define gaim_request_field_int_new purple_request_field_int_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1566 #define gaim_request_field_int_set_default_value \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1567 purple_request_field_int_set_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1568 #define gaim_request_field_int_set_value purple_request_field_int_set_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1569 #define gaim_request_field_int_get_default_value \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1570 purple_request_field_int_get_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1571 #define gaim_request_field_int_get_value purple_request_field_int_get_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1572 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1573 #define gaim_request_field_bool_new purple_request_field_bool_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1574 #define gaim_request_field_bool_set_default_value \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1575 purple_request_field_book_set_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1576 #define gaim_request_field_bool_set_value purple_request_field_bool_set_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1577 #define gaim_request_field_bool_get_default_value \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1578 purple_request_field_bool_get_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1579 #define gaim_request_field_bool_get_value purple_request_field_bool_get_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1580 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1581 #define gaim_request_field_choice_new purple_request_field_choice_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1582 #define gaim_request_field_choice_add purple_request_field_choice_add |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1583 #define gaim_request_field_choice_set_default_value \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1584 purple_request_field_choice_set_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1585 #define gaim_request_field_choice_set_value purple_request_field_choice_set_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1586 #define gaim_request_field_choice_get_default_value \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1587 purple_request_field_choice_get_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1588 #define gaim_request_field_choice_get_value purple_request_field_choice_get_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1589 #define gaim_request_field_choice_get_labels purple_request_field_choice_get_labels |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1590 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1591 #define gaim_request_field_list_new purple_request_field_list_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1592 #define gaim_request_field_list_set_multi_select purple_request_field_list_set_multi_select |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1593 #define gaim_request_field_list_get_multi_select purple_request_field_list_get_multi_select |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1594 #define gaim_request_field_list_get_data purple_request_field_list_get_data |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1595 #define gaim_request_field_list_add purple_request_field_list_add |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1596 #define gaim_request_field_list_add_selected purple_request_field_list_add_selected |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1597 #define gaim_request_field_list_clear_selected purple_request_field_list_clear_selected |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1598 #define gaim_request_field_list_set_selected purple_request_field_list_set_selected |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1599 #define gaim_request_field_list_is_selected purple_request_field_list_is_selected |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1600 #define gaim_request_field_list_get_selected purple_request_field_list_get_selected |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1601 #define gaim_request_field_list_get_items purple_request_field_list_get_items |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1602 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1603 #define gaim_request_field_label_new purple_request_field_label_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1604 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1605 #define gaim_request_field_image_new purple_request_field_image_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1606 #define gaim_request_field_image_set_scale purple_request_field_image_set_scale |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1607 #define gaim_request_field_image_get_buffer purple_request_field_image_get_buffer |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1608 #define gaim_request_field_image_get_size purple_request_field_image_get_size |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1609 #define gaim_request_field_image_get_scale_x purple_request_field_image_get_scale_x |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1610 #define gaim_request_field_image_get_scale_y purple_request_field_image_get_scale_y |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1611 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1612 #define gaim_request_field_account_new purple_request_field_account_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1613 #define gaim_request_field_account_set_default_value purple_request_field_account_set_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1614 #define gaim_request_field_account_set_value purple_request_field_account_set_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1615 #define gaim_request_field_account_set_show_all purple_request_field_account_set_show_all |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1616 #define gaim_request_field_account_set_filter purple_request_field_account_set_filter |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1617 #define gaim_request_field_account_get_default_value purple_request_field_account_get_default_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1618 #define gaim_request_field_account_get_value purple_request_field_account_get_value |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1619 #define gaim_request_field_account_get_show_all purple_request_field_account_get_show_all |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1620 #define gaim_request_field_account_get_filter purple_request_field_account_get_filter |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1621 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1622 #define gaim_request_input purple_request_input |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1623 #define gaim_request_choice purple_request_choice |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1624 #define gaim_request_choice_varg purple_request_choice_varg |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1625 #define gaim_request_action purple_request_action |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1626 #define gaim_request_action_varg purple_request_action_varg |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1627 #define gaim_request_fields purple_request_fields |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1628 #define gaim_request_close purple_request_close |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1629 #define gaim_request_close_with_handle purple_request_close_with_handle |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1630 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1631 #define gaim_request_yes_no purple_request_yes_no |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1632 #define gaim_request_ok_cancel purple_request_ok_cancel |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1633 #define gaim_request_accept_cancel purple_request_accept_cancel |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1634 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1635 #define gaim_request_file purple_request_file |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1636 #define gaim_request_folder purple_request_folder |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1637 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1638 #define gaim_request_set_ui_ops purple_request_set_ui_ops |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1639 #define gaim_request_get_ui_ops purple_request_get_ui_ops |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1640 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1641 /* from roomlist.h */ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1642 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1643 #define GaimRoomlist PurpleRoomlist |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1644 #define GaimRoomlistRoom PurpleRoomlistRoom |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1645 #define GaimRoomlistField PurpleRoomlistField |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1646 #define GaimRoomlistUiOps PurpleRoomlistUiOps |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1647 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1648 #define GAIM_ROOMLIST_ROOMTYPE_CATEGORY PURPLE_ROOMLIST_ROOMTYPE_CATEGORY |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1649 #define GAIM_ROOMLIST_ROOMTYPE_ROOM PURPLE_ROOMLIST_ROOMTYPE_ROOM |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1650 #define GaimRoomlistRoomType PurpleRoomlistRoomType |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1651 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1652 #define GAIM_ROOMLIST_FIELD_BOOL PURPLE_ROOMLIST_BOOL |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1653 #define GAIM_ROOMLIST_FIELD_INT PURPLE_ROOMLIST_INT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1654 #define GAIM_ROOMLIST_FIELD_STRING PURPLE_ROOMLIST_STRING |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1655 #define GaimRoomlistFieldType PurpleRoomlistFieldType |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1656 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1657 #define gaim_roomlist_show_with_account purple_roomlist_show_with_account |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1658 #define gaim_roomlist_new purple_roomlist_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1659 #define gaim_roomlist_ref purple_roomlist_ref |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1660 #define gaim_roomlist_unref purple_roomlist_unref |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1661 #define gaim_roomlist_set_fields purple_roomlist_set_fields |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1662 #define gaim_roomlist_set_in_progress purple_roomlist_set_in_progress |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1663 #define gaim_roomlist_get_in_progress purple_roomlist_get_in_progress |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1664 #define gaim_roomlist_room_add purple_roomlist_room_add |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1665 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1666 #define gaim_roomlist_get_list purple_roomlist_get_list |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1667 #define gaim_roomlist_cancel_get_list purple_roomlist_cancel_get_list |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1668 #define gaim_roomlist_expand_category purple_roomlist_expand_category |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1669 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1670 #define gaim_roomlist_room_new purple_roomlist_room_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1671 #define gaim_roomlist_room_add_field purple_roomlist_room_add_field |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1672 #define gaim_roomlist_room_join purple_roomlist_room_join |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1673 #define gaim_roomlist_field_new purple_roomlist_field_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1674 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1675 #define gaim_roomlist_set_ui_ops purple_roomlist_set_ui_ops |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1676 #define gaim_roomlist_get_ui_ops purple_roomlist_get_ui_ops |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1677 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1678 /* from savedstatuses.h */ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1679 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1680 #define GaimSavedStatus PurpleSavedStatus |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1681 #define GaimSavedStatusSub PurpleSavedStatusSub |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1682 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1683 #define gaim_savedstatus_new purple_savedstatus_new |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1684 #define gaim_savedstatus_set_title purple_savedstatus_set_title |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1685 #define gaim_savedstatus_set_type purple_savedstatus_set_type |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1686 #define gaim_savedstatus_set_message purple_savedstatus_set_message |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1687 #define gaim_savedstatus_set_substatus purple_savedstatus_set_substatus |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1688 #define gaim_savedstatus_unset_substatus purple_savedstatus_unset_substatus |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1689 #define gaim_savedstatus_delete purple_savedstatus_delete |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1690 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1691 #define gaim_savedstatuses_get_all purple_savedstatuses_get_all |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1692 #define gaim_savedstatuses_get_popular purple_savedstatuses_get_popular |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1693 #define gaim_savedstatus_get_current purple_savedstatus_get_current |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1694 #define gaim_savedstatus_get_default purple_savedstatus_get_default |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1695 #define gaim_savedstatus_get_idleaway purple_savedstatus_get_idleaway |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1696 #define gaim_savedstatus_is_idleaway purple_savedstatus_is_idleaway |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1697 #define gaim_savedstatus_set_idleaway purple_savedstatus_set_idleaway |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1698 #define gaim_savedstatus_get_startup purple_savedstatus_get_startup |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1699 #define gaim_savedstatus_find purple_savedstatus_find |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1700 #define gaim_savedstatus_find_by_creation_time purple_savedstatus_find_by_creation_time |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1701 #define gaim_savedstatus_find_transient_by_type_and_message \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1702 purple_savedstatus_find_transient_by_type_and_message |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1703 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1704 #define gaim_savedstatus_is_transient purple_savedstatus_is_transient |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1705 #define gaim_savedstatus_get_title purple_savedstatus_get_title |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1706 #define gaim_savedstatus_get_type purple_savedstatus_get_type |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1707 #define gaim_savedstatus_get_message purple_savedstatus_get_message |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1708 #define gaim_savedstatus_get_creation_time purple_savedstatus_get_creation_time |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1709 #define gaim_savedstatus_has_substatuses purple_savedstatus_has_substatuses |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1710 #define gaim_savedstatus_get_substatus purple_savedstatus_get_substatus |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1711 #define gaim_savedstatus_substatus_get_type purple_savedstatus_substatus_get_type |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1712 #define gaim_savedstatus_substatus_get_message purple_savedstatus_substatus_get_message |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1713 #define gaim_savedstatus_activate purple_savedstatus_activate |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1714 #define gaim_savedstatus_activate_for_account purple_savedstatus_activate_for_account |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1715 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1716 #define gaim_savedstatuses_get_handle purple_savedstatuses_get_handle |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1717 #define gaim_savedstatuses_init purple_savedstatuses_init |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1718 #define gaim_savedstatuses_uninit purple_savedstatuses_uninit |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1719 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1720 /* from signals.h */ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1721 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1722 #define GAIM_CALLBACK PURPLE_CALLBACK |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1723 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1724 #define GaimCallback PurpleCallback |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1725 #define GaimSignalMarshalFunc PurpleSignalMarshalFunc |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1726 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1727 #define GAIM_SIGNAL_PRIORITY_DEFAULT PURPLE_SIGNAL_PRIORITY_DEFAULT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1728 #define GAIM_SIGNAL_PRIORITY_HIGHEST PURPLE_SIGNAL_PRIORITY_HIGHEST |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1729 #define GAIM_SIGNAL_PRIORITY_LOWEST PURPLE_SIGNAL_PRIORITY_LOWEST |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1730 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1731 #define gaim_signal_register purple_signal_register |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1732 #define gaim_signal_unregister purple_signal_unregister |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1733 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1734 #define gaim_signals_unregister_by_instance purple_signals_unregister_by_instance |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1735 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1736 #define gaim_signal_get_values purple_signal_get_values |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1737 #define gaim_signal_connect_priority purple_signal_connect_priority |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1738 #define gaim_signal_connect purple_signal_connect |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1739 #define gaim_signal_connect_priority_vargs purple_signal_connect_priority_vargs |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1740 #define gaim_signal_connect_vargs purple_signal_connect_vargs |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1741 #define gaim_signal_disconnect purple_signal_disconnect |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1742 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1743 #define gaim_signals_disconnect_by_handle purple_signals_disconnect_by_handle |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1744 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1745 #define gaim_signal_emit purple_signal_emit |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1746 #define gaim_signal_emit_vargs purple_signal_emit_vargs |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1747 #define gaim_signal_emit_return_1 purple_signal_emit_vargs |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1748 #define gaim_signal_emit_vargs_return_1 purple_signal_emit_vargs_return_1 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1749 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1750 #define gaim_signals_init purple_signals_init |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1751 #define gaim_signals_uninit purple_signals_uninit |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1752 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1753 #define gaim_marshal_VOID \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1754 purple_marshal_VOID |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1755 #define gaim_marshal_VOID__INT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1756 purple_marshal_VOID__INT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1757 #define gaim_marshal_VOID__INT_INT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1758 purple_marshal_VOID_INT_INT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1759 #define gaim_marshal_VOID__POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1760 purple_marshal_VOID__POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1761 #define gaim_marshal_VOID__POINTER_UINT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1762 purple_marshal_VOID__POINTER_UINT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1763 #define gaim_marshal_VOID__POINTER_INT_INT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1764 purple_marshal_VOID__POINTER_INT_INT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1765 #define gaim_marshal_VOID__POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1766 purple_marshal_VOID__POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1767 #define gaim_marshal_VOID__POINTER_POINTER_UINT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1768 purple_marshal_VOID__POINTER_POINTER_UINT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1769 #define gaim_marshal_VOID__POINTER_POINTER_UINT_UINT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1770 purple_marshal_VOID__POINTER_POINTER_UINT_UINT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1771 #define gaim_marshal_VOID__POINTER_POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1772 purple_marshal_VOID__POINTER_POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1773 #define gaim_marshal_VOID__POINTER_POINTER_POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1774 purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1775 #define gaim_marshal_VOID__POINTER_POINTER_POINTER_POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1776 purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1777 #define gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1778 purple_marshal_VOID__POINTER_POINTER_POINTER_UINT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1779 #define gaim_marshal_VOID__POINTER_POINTER_POINTER_POINTER_UINT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1780 purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_UINT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1781 #define gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1782 purple_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1783 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1784 #define gaim_marshal_INT__INT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1785 purple_marshal_INT__INT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1786 #define gaim_marshal_INT__INT_INT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1787 purple_marshal_INT__INT_INT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1788 #define gaim_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1789 purple_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1790 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1791 #define gaim_marshal_BOOLEAN__POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1792 purple_marshal_BOOLEAN__POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1793 #define gaim_marshal_BOOLEAN__POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1794 purple_marshal_BOOLEAN__POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1795 #define gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1796 purple_marshal_BOOLEAN__POINTER_POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1797 #define gaim_marshal_BOOLEAN__POINTER_POINTER_UINT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1798 purple_marshal_BOOLEAN__POINTER_POINTER_UINT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1799 #define gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER_UINT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1800 purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_UINT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1801 #define gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1802 purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1803 #define gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1804 purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1805 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1806 #define gaim_marshal_BOOLEAN__INT_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1807 purple_marshal_BOOLEAN__INT_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1808 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1809 #define gaim_marshal_POINTER__POINTER_INT \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1810 purple_marshal_POINTER__POINTER_INT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1811 #define gaim_marshal_POINTER__POINTER_INT64 \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1812 purple_marshal_POINTER__POINTER_INT64 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1813 #define gaim_marshal_POINTER__POINTER_INT_BOOLEAN \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1814 purple_marshal_POINTER__POINTER_INT_BOOLEAN |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1815 #define gaim_marshal_POINTER__POINTER_INT64_BOOLEAN \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1816 purple_marshal_POINTER__POINTER_INT64_BOOLEAN |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1817 #define gaim_marshal_POINTER__POINTER_POINTER \ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1818 purple_marshal_POINTER__POINTER_POINTER |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1819 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1820 /* from sound.h */ |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1821 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1822 #define GAIM_SOUND_BUDDY_ARRIVE PURPLE_SOUND_BUDDY_ARRIVE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1823 #define GAIM_SOUND_BUDDY_LEAVE PURPLE_SOUND_BUDDY_LEAVE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1824 #define GAIM_SOUND_RECEIVE PURPLE_SOUND_RECEIVE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1825 #define GAIM_SOUND_FIRST_RECEIVE PURPLE_SOUND_FIRST_RECEIVE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1826 #define GAIM_SOUND_SEND PURPLE_SOUND_SEND |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1827 #define GAIM_SOUND_CHAT_JOIN PURPLE_SOUND_CHAT_JOIN |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1828 #define GAIM_SOUND_CHAT_LEAVE PURPLE_SOUND_CHAT_LEAVE |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1829 #define GAIM_SOUND_CHAT_YOU_SAY PURPLE_SOUND_CHAT_YOU_SAY |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1830 #define GAIM_SOUND_CHAT_SAY PURPLE_SOUND_CHAT_SAY |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1831 #define GAIM_SOUND_POUNCE_DEFAULT PURPLE_SOUND_POUNCE_DEFAULT |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1832 #define GAIM_SOUND_CHAT_NICK PURPLE_SOUND_CHAT_NICK |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1833 #define GAIM_NUM_SOUNDS PURPLE_NUM_SOUNDS |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1834 #define GaimSoundEventID PurpleSoundEventID |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1835 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1836 #define GaimSoundUiOps PurpleSoundUiOps |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1837 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1838 #define gaim_sound_play_file purple_sound_play_file |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1839 #define gaim_sound_play_event purple_sound_play_event |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1840 #define gaim_sound_set_ui_ops purple_sound_set_ui_ops |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1841 #define gaim_sound_get_ui_ops purple_sound_get_ui_ops |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1842 #define gaim_sound_init purple_sound_init |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1843 #define gaim_sound_uninit purple_sound_uninit |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1844 |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1845 #define gaim_sounds_get_handle purple_sounds_get_handle |
f4686fc100ec
compat header, done up through sound.h
Nathan Walp <nwalp@pidgin.im>
parents:
15511
diff
changeset
|
1846 |
15636 | 1847 /* from sslconn.h */ |
1848 | |
1849 #define GAIM_SSL_DEFAULT_PORT PURPLE_SSL_DEFAULT_PORT | |
1850 | |
1851 #define GAIM_SSL_HANDSHAKE_FAILED PURPLE_SSL_HANDSHAKE_FAILED | |
1852 #define GAIM_SSL_CONNECT_FAILED PURPLE_SSL_CONNECT_FAILED | |
1853 #define GaimSslErrorType PurpleSslErrorType | |
1854 | |
1855 #define GaimSslConnection PurpleSslConnection | |
1856 | |
1857 #define GaimSslInputFunction PurpleSslInputFunction | |
1858 #define GaimSslErrorFunction PurpleSslErrorFunction | |
1859 | |
1860 #define GaimSslOps PurpleSslOps | |
1861 | |
1862 #define gaim_ssl_is_supported purple_ssl_is_supported | |
1863 #define gaim_ssl_connect purple_ssl_connect | |
1864 #define gaim_ssl_connect_fd purple_ssl_connect_fd | |
1865 #define gaim_ssl_input_add purple_ssl_input_add | |
1866 #define gaim_ssl_close purple_ssl_close | |
1867 #define gaim_ssl_read purple_ssl_read | |
1868 #define gaim_ssl_write purple_ssl_write | |
1869 | |
1870 #define gaim_ssl_set_ops purple_ssl_set_ops | |
1871 #define gaim_ssl_get_ops purple_ssl_get_ops | |
1872 #define gaim_ssl_init purple_ssl_init | |
1873 #define gaim_ssl_uninit purple_ssl_uninit | |
1874 | |
1875 /* from status.h */ | |
1876 | |
1877 #define GaimStatusType PurpleStatusType | |
1878 #define GaimStatusAttr PurpleStatusAttr | |
1879 #define GaimPresence PurplePresence | |
1880 #define GaimStatus PurpleStatus | |
1881 | |
1882 #define GAIM_PRESENCE_CONTEXT_UNSET PURPLE_PRESENCE_CONTEXT_UNSET | |
1883 #define GAIM_PRESENCE_CONTEXT_ACCOUNT PURPLE_PRESENCE_CONTEXT_ACCOUNT | |
1884 #define GAIM_PRESENCE_CONTEXT_CONV PURPLE_PRESENCE_CONTEXT_CONV | |
1885 #define GAIM_PRESENCE_CONTEXT_BUDDY PURPLE_PRESENCE_CONTEXT_BUDDY | |
1886 #define GaimPresenceContext PurplePresenceContext | |
1887 | |
1888 #define GAIM_STATUS_UNSET PURPLE_STATUS_UNSET | |
1889 #define GAIM_STATUS_OFFLINE PURPLE_STATUS_OFFLINE | |
1890 #define GAIM_STATUS_AVAILABLE PURPLE_STATUS_AVAILABLE | |
1891 #define GAIM_STATUS_UNAVAILABLE PURPLE_STATUS_UNAVAILABLE | |
1892 #define GAIM_STATUS_INVISIBLE PURPLE_STATUS_INVISIBLE | |
1893 #define GAIM_STATUS_AWAY PURPLE_STATUS_AWAY | |
1894 #define GAIM_STATUS_EXTENDED_AWAY PURPLE_STATUS_EXTENDED_AWAY | |
1895 #define GAIM_STATUS_MOBILE PURPLE_STATUS_MOBILE | |
1896 #define GAIM_STATUS_NUM_PRIMITIVES PURPLE_STATUS_NUM_PRIMITIVES | |
1897 #define GaimStatusPrimitive PurpleStatusPrimitive | |
1898 | |
1899 #define gaim_primitive_get_id_from_type purple_primitive_get_id_from_type | |
1900 #define gaim_primitive_get_name_from_type purple_primitive_get_name_from_type | |
1901 #define gaim_primitive_get_type_from_id purple_primitive_get_type_from_id | |
1902 | |
1903 #define gaim_status_type_new_full purple_status_type_new_full | |
1904 #define gaim_status_type_new purple_status_type_new | |
1905 #define gaim_status_type_new_with_attrs purple_status_type_new_with_attrs | |
1906 #define gaim_status_type_destroy purple_status_type_destroy | |
1907 #define gaim_status_type_set_primary_attr purple_status_type_set_primary_attr | |
1908 #define gaim_status_type_add_attr purple_status_type_add_attr | |
1909 #define gaim_status_type_add_attrs purple_status_type_add_attrs | |
1910 #define gaim_status_type_add_attrs_vargs purple_status_type_add_attrs_vargs | |
1911 #define gaim_status_type_get_primitive purple_status_type_get_primitive | |
1912 #define gaim_status_type_get_id purple_status_type_get_id | |
1913 #define gaim_status_type_get_name purple_status_type_get_name | |
1914 #define gaim_status_type_is_saveable purple_status_type_is_saveable | |
1915 #define gaim_status_type_is_user_settable purple_status_type_is_user_settable | |
1916 #define gaim_status_type_is_independent purple_status_type_is_independent | |
1917 #define gaim_status_type_is_exclusive purple_status_type_is_exclusive | |
1918 #define gaim_status_type_is_available purple_status_type_is_available | |
1919 #define gaim_status_type_get_primary_attr purple_status_type_get_primary_attr | |
1920 #define gaim_status_type_get_attr purple_status_type_get_attr | |
1921 #define gaim_status_type_get_attrs purple_status_type_get_attrs | |
1922 #define gaim_status_type_find_with_id purple_status_type_find_with_id | |
1923 | |
1924 #define gaim_status_attr_new purple_status_attr_new | |
1925 #define gaim_status_attr_destroy purple_status_attr_destroy | |
1926 #define gaim_status_attr_get_id purple_status_attr_get_id | |
1927 #define gaim_status_attr_get_name purple_status_attr_get_name | |
1928 #define gaim_status_attr_get_value purple_status_attr_get_value | |
1929 | |
1930 #define gaim_status_new purple_status_new | |
1931 #define gaim_status_destroy purple_status_destroy | |
1932 #define gaim_status_set_active purple_status_set_active | |
1933 #define gaim_status_set_active_with_attrs purple_status_set_active_with_attrs | |
1934 #define gaim_status_set_active_with_attrs_list purple_status_set_active_with_attrs_list | |
1935 #define gaim_status_set_attr_boolean purple_status_set_attr_boolean | |
1936 #define gaim_status_set_attr_int purple_status_set_attr_int | |
1937 #define gaim_status_set_attr_string purple_status_set_attr_string | |
1938 #define gaim_status_get_type purple_status_get_type | |
1939 #define gaim_status_get_presence purple_status_get_presence | |
1940 #define gaim_status_get_id purple_status_get_id | |
1941 #define gaim_status_get_name purple_status_get_name | |
1942 #define gaim_status_is_independent purple_status_is_independent | |
1943 #define gaim_status_is_exclusive purple_status_is_exclusive | |
1944 #define gaim_status_is_available purple_status_is_available | |
1945 #define gaim_status_is_active purple_status_is_active | |
1946 #define gaim_status_is_online purple_status_is_online | |
1947 #define gaim_status_get_attr_value purple_status_get_attr_value | |
1948 #define gaim_status_get_attr_boolean purple_status_get_attr_boolean | |
1949 #define gaim_status_get_attr_int purple_status_get_attr_int | |
1950 #define gaim_status_get_attr_string purple_status_get_attr_string | |
1951 #define gaim_status_compare purple_status_compare | |
1952 | |
1953 #define gaim_presence_new purple_presence_new | |
1954 #define gaim_presence_new_for_account purple_presence_new_for_account | |
1955 #define gaim_presence_new_for_conv purple_presence_new_for_conv | |
1956 #define gaim_presence_new_for_buddy purple_presence_new_for_buddy | |
1957 #define gaim_presence_destroy purple_presence_destroy | |
1958 #define gaim_presence_remove_buddy purple_presence_remove_buddy | |
1959 #define gaim_presence_add_status purple_presence_add_status | |
1960 #define gaim_presence_add_list purple_presence_add_list | |
1961 #define gaim_presence_set_status_active purple_presence_set_status_active | |
1962 #define gaim_presence_switch_status purple_presence_switch_status | |
1963 #define gaim_presence_set_idle purple_presence_set_idle | |
1964 #define gaim_presence_set_login_time purple_presence_set_login_time | |
1965 #define gaim_presence_get_context purple_presence_get_context | |
1966 #define gaim_presence_get_account purple_presence_get_account | |
1967 #define gaim_presence_get_conversation purple_presence_get_conversation | |
1968 #define gaim_presence_get_chat_user purple_presence_get_chat_user | |
1969 #define gaim_presence_get_buddies purple_presence_get_buddies | |
1970 #define gaim_presence_get_statuses purple_presence_get_statuses | |
1971 #define gaim_presence_get_status purple_presence_get_status | |
1972 #define gaim_presence_get_active_status purple_presence_get_active_status | |
1973 #define gaim_presence_is_available purple_presence_is_available | |
1974 #define gaim_presence_is_online purple_presence_is_online | |
1975 #define gaim_presence_is_status_active purple_presence_is_status_active | |
1976 #define gaim_presence_is_status_primitive_active \ | |
1977 purple_presence_is_status_primitive_active | |
1978 #define gaim_presence_is_idle purple_presence_is_idle | |
1979 #define gaim_presence_get_idle_time purple_presence_get_idle_time | |
1980 #define gaim_presence_get_login_time purple_presence_get_login_time | |
1981 #define gaim_presence_compare purple_presence_compare | |
1982 | |
1983 #define gaim_status_get_handle purple_status_get_handle | |
1984 #define gaim_status_init purple_status_init | |
1985 #define gaim_status_uninit purple_status_uninit | |
1986 | |
15650 | 1987 /* from stringref.h */ |
1988 | |
1989 #define GaimStringref PurpleStringref | |
1990 | |
1991 #define gaim_stringref_new purple_stringref_new | |
1992 #define gaim_stringref_new_noref purple_stringref_new_noref | |
1993 #define gaim_stringref_printf purple_stringref_printf | |
1994 #define gaim_stringref_ref purple_stringref_ref | |
1995 #define gaim_stringref_unref purple_stringref_unref | |
1996 #define gaim_stringref_value purple_stringref_value | |
1997 #define gaim_stringref_cmp purple_stringref_cmp | |
1998 #define gaim_stringref_len purple_stringref_len | |
1999 | |
2000 /* from stun.h */ | |
2001 | |
2002 #define GaimStunNatDiscovery PurpleStunNatDiscovery | |
2003 | |
2004 #define GAIM_STUN_STATUS_UNDISCOVERED PURPLE_STUN_STATUS_UNDISCOVERED | |
2005 #define GAIM_STUN_STATUS_UNKNOWN PURPLE_STUN_STATUS_UNKNOWN | |
2006 #define GAIM_STUN_STATUS_DISCOVERING PURPLE_STUN_STATUS_DISCOVERING | |
2007 #define GAIM_STUN_STATUS_DISCOVERED PURPLE_STUN_STATUS_DISCOVERED | |
2008 #define GaimStunStatus PurpleStunStatus | |
2009 | |
2010 #define GAIM_STUN_NAT_TYPE_PUBLIC_IP PURPLE_STUN_NAT_TYPE_PUBLIC_IP | |
2011 #define GAIM_STUN_NAT_TYPE_UNKNOWN_NAT PURPLE_STUN_NAT_TYPE_UNKNOWN_NAT | |
2012 #define GAIM_STUN_NAT_TYPE_FULL_CONE PURPLE_STUN_NAT_TYPE_FULL_CONE | |
2013 #define GAIM_STUN_NAT_TYPE_RESTRICTED_CONE PURPLE_STUN_NAT_TYPE_RESTRICTED_CONE | |
2014 #define GAIM_STUN_NAT_TYPE_PORT_RESTRICTED_CONE PURPLE_STUN_NAT_TYPE_PORT_RESTRICTED_CONE | |
2015 #define GAIM_STUN_NAT_TYPE_SYMMETRIC PURPLE_STUN_NAT_TYPE_SYMMETRIC | |
2016 #define GaimStunNatType PurpleStunNatType | |
2017 | |
2018 /* why didn't this have a Gaim prefix before? */ | |
2019 #define StunCallback PurpleStunCallback | |
2020 | |
2021 #define gaim_stun_discover purple_stun_discover | |
2022 #define gaim_stun_init purple_stun_init | |
2023 | |
2024 /* from upnp.h */ | |
2025 | |
2026 /* suggested rename: PurpleUPnpMappingHandle */ | |
2027 #define UPnPMappingAddRemove PurpleUPnPMappingAddRemove | |
2028 | |
2029 #define GaimUPnPCallback PurpleUPnPCallback | |
2030 | |
2031 #define gaim_upnp_discover purple_upnp_discover | |
2032 #define gaim_upnp_get_public_ip purple_upnp_get_public_ip | |
2033 #define gaim_upnp_cancel_port_mapping purple_upnp_cancel_port_mapping | |
2034 #define gaim_upnp_set_port_mapping purple_upnp_set_port_mapping | |
2035 | |
2036 #define gaim_upnp_remove_port_mapping purple_upnp_remove_port_mapping | |
2037 | |
2038 /* from util.h */ | |
2039 | |
2040 #define GaimUtilFetchUrlData PurpleUtilFetchUrlData | |
2041 #define GaimMenuAction PurpleMenuAction | |
2042 | |
2043 #define GaimInfoFieldFormatCallback PurpleIntoFieldFormatCallback | |
2044 | |
2045 #define GaimKeyValuePair PurpleKeyValuePair | |
2046 | |
2047 #define gaim_menu_action_new purple_menu_action_new | |
2048 #define gaim_menu_action_free purple_menu_action_free | |
2049 | |
2050 #define gaim_base16_encode purple_base16_encode | |
2051 #define gaim_base16_decode purple_base16_decode | |
2052 #define gaim_base64_encode purple_base64_encode | |
2053 #define gaim_base64_decode purple_base64_decode | |
2054 #define gaim_quotedp_decode purple_quotedp_decode | |
2055 | |
2056 #define gaim_mime_decode_field purple_mime_deco_field | |
2057 | |
2058 #define gaim_utf8_strftime purple_utf8_strftime | |
2059 #define gaim_date_format_short purple_date_format_short | |
2060 #define gaim_date_format_long purple_date_format_long | |
2061 #define gaim_date_format_full purple_date_format_full | |
2062 #define gaim_time_format purple_time_format | |
2063 #define gaim_time_build purple_time_build | |
2064 | |
2065 #define GAIM_NO_TZ_OFF PURPLE_NO_TZ_OFF | |
2066 | |
2067 #define gaim_str_to_time purple_str_to_time | |
2068 | |
2069 #define gaim_markup_find_tag purple_markup_find_tag | |
2070 #define gaim_markup_extract_info_field purple_markup_extract_info_field | |
2071 #define gaim_markup_html_to_xhtml purple_markup_html_to_xhtml | |
2072 #define gaim_markup_strip_html purple_markup_strip_html | |
2073 #define gaim_markup_linkify purple_markup_linkify | |
2074 #define gaim_markup_slice purple_markup_slice | |
2075 #define gaim_markup_get_tag_name purple_markup_get_tag_name | |
2076 #define gaim_unescape_html purple_unescape_html | |
2077 | |
2078 #define gaim_home_dir purple_home_dir | |
2079 #define gaim_user_dir purple_user_dir | |
2080 | |
2081 #define gaim_util_set_user_dir purple_util_set_user_dir | |
2082 | |
2083 #define gaim_build_dir purple_build_dir | |
2084 | |
2085 #define gaim_util_write_data_to_file purple_util_write_data_to_file | |
2086 | |
2087 #define gaim_util_read_xml_from_file purple_util_read_xml_from_file | |
2088 | |
2089 #define gaim_mkstemp purple_mkstemp | |
2090 | |
2091 #define gaim_program_is_valid purple_program_is_valid | |
2092 | |
2093 #define gaim_running_gnome purple_running_gnome | |
2094 #define gaim_running_kde purple_running_kde | |
2095 #define gaim_running_osx purple_running_osx | |
2096 | |
2097 #define gaim_fd_get_ip purple_fd_get_ip | |
2098 | |
2099 #define gaim_normalize purple_normalize | |
2100 #define gaim_normalize_nocase purple_normalize_nocase | |
2101 | |
2102 #define gaim_strdup_withhtml purple_strdup_withhtml | |
2103 | |
2104 #define gaim_str_has_prefix purple_str_has_prefix | |
2105 #define gaim_str_has_suffix purple_str_has_suffix | |
2106 #define gaim_str_add_cr purple_str_add_cr | |
2107 #define gaim_str_strip_char purple_str_strip_char | |
2108 | |
2109 #define gaim_util_chrreplace purple_util_chrreplace | |
2110 | |
2111 #define gaim_strreplace purple_strreplace | |
2112 | |
2113 #define gaim_utf8_ncr_encode purple_utf8_ncr_encode | |
2114 #define gaim_utf8_ncr_decode purple_utf8_ncr_decode | |
2115 | |
2116 #define gaim_strcasereplace purple_strcasereplace | |
2117 #define gaim_strcasestr purple_strcasestr | |
2118 | |
2119 #define gaim_str_size_to_units purple_str_size_to_units | |
2120 #define gaim_str_seconds_to_string purple_str_seconds_to_string | |
2121 #define gaim_str_binary_to_ascii purple_str_binary_to_ascii | |
2122 | |
2123 | |
2124 #define gaim_got_protocol_handler_uri purple_got_protocol_handler_uri | |
2125 | |
2126 #define gaim_url_parse purple_url_parse | |
2127 | |
2128 #define GaimUtilFetchUrlCallback PurpleUtilFetchUrlCallback | |
2129 #define gaim_util_fetch_url purple_util_fetch_url | |
2130 #define gaim_util_fetch_url_request purple_util_fetch_url_request | |
2131 #define gaim_util_fetch_url_cancel purple_util_fetch_url_cancel | |
2132 | |
2133 #define gaim_url_decode purple_url_decode | |
2134 #define gaim_url_encode purple_url_encode | |
2135 | |
2136 #define gaim_email_is_valid purple_email_is_valid | |
2137 | |
2138 #define gaim_uri_list_extract_uris purple_uri_list_extract_uris | |
2139 #define gaim_uri_list_extract_filenames purple_uri_list_extract_filenames | |
2140 | |
2141 #define gaim_utf8_try_convert purple_utf8_try_convert | |
2142 #define gaim_utf8_salvage purple_utf8_salvage | |
2143 #define gaim_utf8_strcasecmp purple_utf8_strcasecmp | |
2144 #define gaim_utf8_has_word purple_utf8_has_word | |
2145 | |
2146 #define gaim_print_utf8_to_console purple_print_utf8_to_console | |
2147 | |
2148 #define gaim_message_meify purple_message_meify | |
2149 | |
2150 #define gaim_text_strip_mnemonic purple_text_strip_mnemonic | |
2151 | |
2152 #define gaim_unescape_filename purple_unescape_filename | |
2153 #define gaim_escape_filename purple_escape_filename | |
2154 | |
15651 | 2155 /* from value.h */ |
2156 | |
2157 #define GAIM_TYPE_UNKNOWN PURPLE_TYPE_UNKNOWN | |
2158 #define GAIM_TYPE_SUBTYPE PURPLE_TYPE_SUBTYPE | |
2159 #define GAIM_TYPE_CHAR PURPLE_TYPE_CHAR | |
2160 #define GAIM_TYPE_UCHAR PURPLE_TYPE_UCHAR | |
2161 #define GAIM_TYPE_BOOLEAN PURPLE_TYPE_BOOLEAN | |
2162 #define GAIM_TYPE_SHORT PURPLE_TYPE_SHORT | |
2163 #define GAIM_TYPE_USHORT PURPLE_TYPE_USHORT | |
2164 #define GAIM_TYPE_INT PURPLE_TYPE_INT | |
2165 #define GAIM_TYPE_UINT PURPLE_TYPE_UINT | |
2166 #define GAIM_TYPE_LONG PURPLE_TYPE_LONG | |
2167 #define GAIM_TYPE_ULONG PURPLE_TYPE_ULONG | |
2168 #define GAIM_TYPE_INT64 PURPLE_TYPE_INT64 | |
2169 #define GAIM_TYPE_UINT64 PURPLE_TYPE_UINT64 | |
2170 #define GAIM_TYPE_STRING PURPLE_TYPE_STRING | |
2171 #define GAIM_TYPE_OBJECT PURPLE_TYPE_OBJECT | |
2172 #define GAIM_TYPE_POINTER PURPLE_TYPE_POINTER | |
2173 #define GAIM_TYPE_ENUM PURPLE_TYPE_ENUM | |
2174 #define GAIM_TYPE_BOXED PURPLE_TYPE_BOXED | |
2175 #define GaimType PurpleType | |
2176 | |
2177 | |
2178 #define GAIM_SUBTYPE_UNKNOWN PURPLE_SUBTYPE_UNKNOWN | |
2179 #define GAIM_SUBTYPE_ACCOUNT PURPLE_SUBTYPE_ACCOUNT | |
2180 #define GAIM_SUBTYPE_BLIST PURPLE_SUBTYPE_BLIST | |
2181 #define GAIM_SUBTYPE_BLIST_BUDDY PURPLE_SUBTYPE_BLIST_BUDDY | |
2182 #define GAIM_SUBTYPE_BLIST_GROUP PURPLE_SUBTYPE_BLIST_GROUP | |
2183 #define GAIM_SUBTYPE_BLIST_CHAT PURPLE_SUBTYPE_BLIST_CHAT | |
2184 #define GAIM_SUBTYPE_BUDDY_ICON PURPLE_SUBTYPE_BUDDY_ICON | |
2185 #define GAIM_SUBTYPE_CONNECTION PURPLE_SUBTYPE_CONNECTION | |
2186 #define GAIM_SUBTYPE_CONVERSATION PURPLE_SUBTYPE_CONVERSATION | |
2187 #define GAIM_SUBTYPE_PLUGIN PURPLE_SUBTYPE_PLUGIN | |
2188 #define GAIM_SUBTYPE_BLIST_NODE PURPLE_SUBTYPE_BLIST_NODE | |
2189 #define GAIM_SUBTYPE_CIPHER PURPLE_SUBTYPE_CIPHER | |
2190 #define GAIM_SUBTYPE_STATUS PURPLE_SUBTYPE_STATUS | |
2191 #define GAIM_SUBTYPE_LOG PURPLE_SUBTYPE_LOG | |
2192 #define GAIM_SUBTYPE_XFER PURPLE_SUBTYPE_XFER | |
2193 #define GAIM_SUBTYPE_SAVEDSTATUS PURPLE_SUBTYPE_SAVEDSTATUS | |
2194 #define GAIM_SUBTYPE_XMLNODE PURPLE_SUBTYPE_XMLNODE | |
2195 #define GAIM_SUBTYPE_USERINFO PURPLE_SUBTYPE_USERINFO | |
2196 #define GaimSubType PurpleSubType | |
2197 | |
2198 #define GaimValue PurpleValue | |
2199 | |
2200 #define gaim_value_new purple_value_new | |
2201 #define gaim_value_new_outgoing purple_value_new_outgoing | |
2202 #define gaim_value_destroy purple_value_destroy | |
2203 #define gaim_value_dup purple_value_dup | |
2204 #define gaim_value_get_type purple_value_get_type | |
2205 #define gaim_value_get_subtype purple_value_get_subtype | |
2206 #define gaim_value_get_specific_type purple_value_get_specific_type | |
2207 #define gaim_value_is_outgoing purple_value_is_outgoing | |
2208 #define gaim_value_set_char purple_value_set_char | |
2209 #define gaim_value_set_uchar purple_value_set_uchar | |
2210 #define gaim_value_set_boolean purple_value_set_boolean | |
2211 #define gaim_value_set_short purple_value_set_short | |
2212 #define gaim_value_set_ushort purple_value_set_ushort | |
2213 #define gaim_value_set_int purple_value_set_int | |
2214 #define gaim_value_set_uint purple_value_set_uint | |
2215 #define gaim_value_set_long purple_value_set_long | |
2216 #define gaim_value_set_ulong purple_value_set_ulong | |
2217 #define gaim_value_set_int64 purple_value_set_int64 | |
2218 #define gaim_value_set_uint64 purple_value_set_uint64 | |
2219 #define gaim_value_set_string purple_value_set_string | |
2220 #define gaim_value_set_object purple_value_set_object | |
2221 #define gaim_value_set_pointer purple_value_set_pointer | |
2222 #define gaim_value_set_enum purple_value_set_enum | |
2223 #define gaim_value_set_boxed purple_value_set_boxed | |
2224 #define gaim_value_get_char purple_value_get_char | |
2225 #define gaim_value_get_uchar purple_value_get_uchar | |
2226 #define gaim_value_get_boolean purple_value_get_boolean | |
2227 #define gaim_value_get_short purple_value_get_short | |
2228 #define gaim_value_get_ushort purple_value_get_ushort | |
2229 #define gaim_value_get_int purple_value_get_int | |
2230 #define gaim_value_get_uint purple_value_get_uint | |
2231 #define gaim_value_get_long purple_value_get_long | |
2232 #define gaim_value_get_ulong purple_value_get_ulong | |
2233 #define gaim_value_get_int64 purple_value_get_int64 | |
2234 #define gaim_value_get_uint64 purple_value_get_uint64 | |
2235 #define gaim_value_get_string purple_value_get_string | |
2236 #define gaim_value_get_object purple_value_get_object | |
2237 #define gaim_value_get_pointer purple_value_get_pointer | |
2238 #define gaim_value_get_enum purple_value_get_enum | |
2239 #define gaim_value_get_boxed purple_value_get_boxed | |
2240 | |
2241 /* from version.h */ | |
2242 | |
2243 #define GAIM_MAJOR_VERSION PURPLE_MAJOR_VERSION | |
2244 #define GAIM_MINOR_VERSION PURPLE_MINOR_VERSION | |
2245 #define GAIM_MICRO_VERSION PURPLE_MICRO_VERSION | |
2246 | |
2247 #define GAIM_VERSION_CHECK PURPLE_VERSION_CHECK | |
2248 | |
2249 /* from whiteboard.h */ | |
2250 | |
2251 #ifndef _GAIM_WHITEBOARD_H_ | |
2252 #define _GAIM_WHITEBOARD_H_ | |
2253 | |
2254 #define GaimWhiteboardPrplOps PurpleWhiteboardPrplOps | |
2255 #define GaimWhiteboard PurpleWhiteboard | |
2256 #define GaimWhiteboardUiOps PurpleWhiteboardUiOps | |
2257 | |
2258 #define gaim_whiteboard_set_ui_ops purple_whiteboard_set_ui_ops | |
2259 #define gaim_whiteboard_set_prpl_ops purple_whiteboard_set_prpl_ops | |
2260 | |
2261 #define gaim_whiteboard_create purple_whiteboard_create | |
2262 #define gaim_whiteboard_destroy purple_whiteboard_destroy | |
2263 #define gaim_whiteboard_start purple_whiteboard_start | |
2264 #define gaim_whiteboard_get_session purple_whiteboard_get_session | |
2265 #define gaim_whiteboard_draw_list_destroy purple_whiteboard_draw_list_destroy | |
2266 #define gaim_whiteboard_get_dimensions purple_whiteboard_get_dimensions | |
2267 #define gaim_whiteboard_set_dimensions purple_whiteboard_set_dimensions | |
2268 #define gaim_whiteboard_draw_point purple_whiteboard_draw_point | |
2269 #define gaim_whiteboard_send_draw_list purple_whiteboard_send_draw_list | |
2270 #define gaim_whiteboard_draw_line purple_whiteboard_draw_line | |
2271 #define gaim_whiteboard_clear purple_whiteboard_clear | |
2272 #define gaim_whiteboard_send_clear purple_whiteboard_send_clear | |
2273 #define gaim_whiteboard_send_brush purple_whiteboard_send_brush | |
2274 #define gaim_whiteboard_get_brush purple_whiteboard_get_brush | |
2275 #define gaim_whiteboard_set_brush purple_whiteboard_set_brush | |
2276 | |
15374 | 2277 #endif /* _GAIM_COMPAT_H_ */ |