comparison plugins/perl/common/Conversation.xs @ 12871:2422097a7a5e

[gaim-migrate @ 15223] Whitespace in some .c and .h files that I hadn't had a reason to touch before, this is it's own commit mostly to show how easy it was to get perl plugins to support individual plugin pref frames, as opposed to just one for all the loaded perl plugins. And some whitespace that I missed in Conversation.xs. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Sat, 14 Jan 2006 07:12:46 +0000
parents 622110272ed9
children 3ab3e68df807
comparison
equal deleted inserted replaced
12870:a9cd674078b1 12871:2422097a7a5e
99 gboolean log 99 gboolean log
100 100
101 gboolean 101 gboolean
102 gaim_conversation_is_logging(conv) 102 gaim_conversation_is_logging(conv)
103 Gaim::Conversation conv 103 Gaim::Conversation conv
104
105 104
106 Gaim::Conversation::IM 105 Gaim::Conversation::IM
107 gaim_conversation_get_im_data(conv) 106 gaim_conversation_get_im_data(conv)
108 Gaim::Conversation conv 107 Gaim::Conversation conv
109 108
199 198
200 guint 199 guint
201 gaim_conv_im_get_type_again_timeout(im) 200 gaim_conv_im_get_type_again_timeout(im)
202 Gaim::Conversation::IM im 201 Gaim::Conversation::IM im
203 202
204
205 void 203 void
206 gaim_conv_im_update_typing(im) 204 gaim_conv_im_update_typing(im)
207 Gaim::Conversation::IM im 205 Gaim::Conversation::IM im
208
209 206
210 void 207 void
211 gaim_conv_im_send(im, message) 208 gaim_conv_im_send(im, message)
212 Gaim::Conversation::IM im 209 Gaim::Conversation::IM im
213 const char *message 210 const char *message
217 Gaim::Conversation::IM im 214 Gaim::Conversation::IM im
218 const char *who 215 const char *who
219 const char *message 216 const char *message
220 Gaim::MessageFlags flags 217 Gaim::MessageFlags flags
221 time_t mtime 218 time_t mtime
222
223 219
224 MODULE = Gaim::Conversation PACKAGE = Gaim::Conversation PREFIX = gaim_conv_ 220 MODULE = Gaim::Conversation PACKAGE = Gaim::Conversation PREFIX = gaim_conv_
225 PROTOTYPES: ENABLE 221 PROTOTYPES: ENABLE
226 222
227 gboolean 223 gboolean
365 t_GL_extra_msgs = g_list_append(t_GL_extra_msgs, SvPV(*av_fetch((AV *)SvRV(extra_msgs), i, 0), t_sl)); 361 t_GL_extra_msgs = g_list_append(t_GL_extra_msgs, SvPV(*av_fetch((AV *)SvRV(extra_msgs), i, 0), t_sl));
366 } 362 }
367 363
368 gaim_conv_chat_add_users(chat, t_GL_users, t_GL_extra_msgs, t_GL_flags, new_arrivals); 364 gaim_conv_chat_add_users(chat, t_GL_users, t_GL_extra_msgs, t_GL_flags, new_arrivals);
369 365
370
371 gboolean 366 gboolean
372 gaim_conv_chat_find_user(chat, user) 367 gaim_conv_chat_find_user(chat, user)
373 Gaim::Conversation::Chat chat 368 Gaim::Conversation::Chat chat
374 const char * user 369 const char * user
375 370