Mercurial > pidgin.yaz
comparison src/plugin.h @ 10504:1a97d5e88d12
[gaim-migrate @ 11796]
Lots of things here:
- Several memory leak fixes
- A few invalid memory access fixes
- Fix a yahoo crash going idle when away
- Fix Add user in chats to actually fill in the screenname
- Add gaim_account_{get,set}_enabled to perl
- Fix command priorities (fixes /me in IRC)
- Fix MSN notification server transfer to be quiet about it
- Fix MSN blist sync if user has insane friendly name
- Make the docklet less crash-happy if it fails to embed in 3 seconds
- Only probe for native plugins with the correct file extension
- 1 typo fix :)
... and quite possibly something else I forgot.
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Tue, 11 Jan 2005 17:25:06 +0000 |
| parents | 12460aa2c820 |
| children | c604c88a7530 |
comparison
equal
deleted
inserted
replaced
| 10503:776586d647e3 | 10504:1a97d5e88d12 |
|---|---|
| 27 | 27 |
| 28 #include <glib/glist.h> | 28 #include <glib/glist.h> |
| 29 #include <gmodule.h> | 29 #include <gmodule.h> |
| 30 #include "signals.h" | 30 #include "signals.h" |
| 31 #include "value.h" | 31 #include "value.h" |
| 32 | |
| 33 #ifdef _WIN32 | |
| 34 # define GAIM_PLUGIN_EXT ".dll" | |
| 35 #else | |
| 36 # ifdef __hpux | |
| 37 # define GAIM_PLUGIN_EXT ".sl" | |
| 38 # else | |
| 39 # define GAIM_PLUGIN_EXT ".so" | |
| 40 # endif | |
| 41 #endif | |
| 32 | 42 |
| 33 typedef struct _GaimPlugin GaimPlugin; | 43 typedef struct _GaimPlugin GaimPlugin; |
| 34 typedef struct _GaimPluginInfo GaimPluginInfo; | 44 typedef struct _GaimPluginInfo GaimPluginInfo; |
| 35 typedef struct _GaimPluginUiInfo GaimPluginUiInfo; | 45 typedef struct _GaimPluginUiInfo GaimPluginUiInfo; |
| 36 typedef struct _GaimPluginLoaderInfo GaimPluginLoaderInfo; | 46 typedef struct _GaimPluginLoaderInfo GaimPluginLoaderInfo; |
