comparison plugins/SIGNALS @ 3190:dee7db9e51d4

[gaim-migrate @ 3207] typos committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 28 Apr 2002 18:24:49 +0000
parents e102d1629c71
children c11960537fee
comparison
equal deleted inserted replaced
3189:dd03116e0f8d 3190:dee7db9e51d4
33 To add a signal handler, call the fuction gaim_signal_connect with the 33 To add a signal handler, call the fuction gaim_signal_connect with the
34 following arguments: 34 following arguments:
35 35
36 void *, enum gaim_event, void *, void * 36 void *, enum gaim_event, void *, void *
37 37
38 The first arg is the handle that was passed to gaim_signal_init. You did 38 The first arg is the handle that was passed to gaim_plugin_init. You did
39 save it, right? 39 save it, right?
40 The second arg is hopefully obvious. 40 The second arg is hopefully obvious.
41 The third arg is a pointer to a function that takes various args 41 The third arg is a pointer to a function that takes various args
42 depending on which event you're dealing with. 42 depending on which event you're dealing with.
43 The fourth arg is any data you want to send to your function, as a final 43 The fourth arg is any data you want to send to your function, as a final