| 49 { |
49 { |
| 50 void *handle = gaim_conversations_get_handle(); |
50 void *handle = gaim_conversations_get_handle(); |
| 51 plugin_handle = plugin; |
51 plugin_handle = plugin; |
| 52 gaim_signal_connect(handle, "writing-im-msg", plugin, |
52 gaim_signal_connect(handle, "writing-im-msg", plugin, |
| 53 GAIM_CALLBACK(outgoing_msg_cb), NULL); |
53 GAIM_CALLBACK(outgoing_msg_cb), NULL); |
| |
54 gaim_signal_connect(handle, "sending-im-msg", plugin, |
| |
55 GAIM_CALLBACK(outgoing_msg_cb), NULL); |
| 54 |
56 |
| 55 return TRUE; |
57 return TRUE; |
| 56 } |
58 } |
| 57 |
59 |
| 58 |
60 |