comparison plugins/HOWTO @ 98:c2d22261e281

[gaim-migrate @ 108] Quick additional info. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 09 Apr 2000 20:16:40 +0000
parents 19cffb5bd129
children e8dae982b37c
comparison
equal deleted inserted replaced
97:5b4b7aa8dd9a 98:c2d22261e281
42 that plugins will have difficulty working together. But then again, that's 42 that plugins will have difficulty working together. But then again, that's
43 what shared memory is for. 43 what shared memory is for.
44 44
45 When your plugin gets unloaded, gaim will try to call gaim_plugin_remove(). It 45 When your plugin gets unloaded, gaim will try to call gaim_plugin_remove(). It
46 doesn't have to be there, but it's nice if, say, you create a window, and when 46 doesn't have to be there, but it's nice if, say, you create a window, and when
47 the plugin gets unloaded, it removes the window. 47 the plugin gets unloaded, it removes the window. Also, all the callbacks you
48 have attached to gaim signals will be removed.
48 49
49 There are a few examples in this directory. Enjoy. 50 There are a few examples in this directory. Enjoy.