Mercurial > pidgin
comparison plugins/simple.c @ 5227:6d1707dc8c3d
[gaim-migrate @ 5597]
debug_printf -> gaim_debug
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Sat, 26 Apr 2003 17:36:52 +0000 |
| parents | fefad67de2c7 |
| children | fc0441fbf159 |
comparison
equal
deleted
inserted
replaced
| 5226:a2199ef77cbc | 5227:6d1707dc8c3d |
|---|---|
| 2 #include "gaim.h" | 2 #include "gaim.h" |
| 3 | 3 |
| 4 static gboolean | 4 static gboolean |
| 5 plugin_load(GaimPlugin *plugin) | 5 plugin_load(GaimPlugin *plugin) |
| 6 { | 6 { |
| 7 debug_printf("simple plugin loaded.\n"); | 7 gaim_debug(GAIM_DEBUG_INFO, "simple", "simple plugin loaded.\n"); |
| 8 | 8 |
| 9 return TRUE; | 9 return TRUE; |
| 10 } | 10 } |
| 11 | 11 |
| 12 static gboolean | 12 static gboolean |
| 13 plugin_unload(GaimPlugin *plugin) | 13 plugin_unload(GaimPlugin *plugin) |
| 14 { | 14 { |
| 15 debug_printf("simple plugin unloaded.\n"); | 15 gaim_debug(GAIM_DEBUG_INFO, "simple", "simple plugin unloaded.\n"); |
| 16 | 16 |
| 17 return TRUE; | 17 return TRUE; |
| 18 } | 18 } |
| 19 | 19 |
| 20 static GaimPluginInfo info = | 20 static GaimPluginInfo info = |
