Mercurial > pidgin
annotate libgaim/plugins/perl/common/module.h @ 14326:f74c19f2da30
[gaim-migrate @ 17021]
Show the accounts dialog only once.
committer: Tailor Script <tailor@pidgin.im>
| author | Sadrul Habib Chowdhury <imadil@gmail.com> |
|---|---|
| date | Thu, 24 Aug 2006 19:55:43 +0000 |
| parents | 8793fc8f7064 |
| children | fb675c9eef7a |
| rev | line source |
|---|---|
| 14192 | 1 |
| 2 | |
| 3 typedef struct group *Gaim__Group; | |
| 4 | |
| 5 #define group perl_group | |
| 6 | |
| 7 #include <glib.h> | |
| 8 #ifdef _WIN32 | |
| 9 #undef pipe | |
| 10 #endif | |
| 11 #include <EXTERN.h> | |
| 12 #include <perl.h> | |
| 13 #include <XSUB.h> | |
| 14 | |
| 15 #undef group | |
| 16 | |
| 17 #include "../perl-common.h" | |
| 18 | |
| 19 #include "account.h" | |
| 20 #include "accountopt.h" | |
| 21 #include "blist.h" | |
| 22 #include "buddyicon.h" | |
| 23 #include "cipher.h" | |
| 24 #include "cmds.h" | |
| 25 #include "connection.h" | |
| 26 #include "conversation.h" | |
| 27 #include "debug.h" | |
| 28 #include "desktopitem.h" | |
| 29 #include "eventloop.h" | |
| 30 #include "ft.h" | |
| 31 #include "gtkaccount.h" | |
| 32 #include "gtkblist.h" | |
| 33 #include "gtkconn.h" | |
| 34 #include "gtkconv.h" | |
| 35 #include "gtkutils.h" | |
| 36 #include "imgstore.h" | |
| 37 #include "network.h" | |
| 38 #include "notify.h" | |
| 39 #include "plugin.h" | |
| 40 #include "pluginpref.h" | |
| 41 #include "pounce.h" | |
| 42 #include "prefs.h" | |
| 43 #include "privacy.h" | |
| 44 #include "prpl.h" | |
| 45 #include "proxy.h" | |
| 46 #include "request.h" | |
| 47 #include "roomlist.h" | |
| 48 #include "savedstatuses.h" | |
| 49 #include "server.h" | |
| 50 #include "signals.h" | |
| 51 #include "sound.h" | |
| 52 #include "sslconn.h" | |
| 53 #include "status.h" | |
| 54 #include "stringref.h" | |
| 55 /* Ewww. perl has it's own util.h which is in the include path :( */ | |
|
14315
8793fc8f7064
[gaim-migrate @ 17008]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
14267
diff
changeset
|
56 #include "libgaim/util.h" |
| 14192 | 57 #include "value.h" |
| 58 #include "xmlnode.h" | |
| 59 | |
| 60 /* account.h */ | |
| 61 typedef GaimAccount * Gaim__Account; | |
| 62 typedef GaimAccountOption * Gaim__Account__Option; | |
| 63 typedef GaimAccountUiOps * Gaim__Account__UiOps; | |
| 64 typedef GaimAccountUserSplit * Gaim__Account__UserSplit; | |
| 65 | |
| 66 /* blist.h */ | |
| 67 typedef GaimBlistNode * Gaim__BuddyList__Node; | |
| 68 typedef GaimBlistNodeFlags Gaim__BuddyList__NodeFlags; | |
| 69 typedef GaimBlistUiOps * Gaim__BuddyList__UiOps; | |
| 70 typedef GaimBuddyList * Gaim__BuddyList; | |
| 71 typedef GaimBuddy * Gaim__BuddyList__Buddy; | |
| 72 typedef GaimChat * Gaim__BuddyList__Chat; | |
| 73 typedef GaimContact * Gaim__BuddyList__Contact; | |
| 74 typedef GaimGroup * Gaim__BuddyList__Group; | |
| 75 | |
| 76 /* buddyicon.h */ | |
| 77 typedef GaimBuddyIcon * Gaim__Buddy__Icon; | |
| 78 | |
| 79 /* cipher.h */ | |
| 80 typedef GaimCipher * Gaim__Cipher; | |
| 81 typedef GaimCipherCaps Gaim__CipherCaps; | |
| 82 typedef GaimCipherContext * Gaim__Cipher__Context; | |
| 83 typedef GaimCipherOps * Gaim__Cipher__Ops; | |
| 84 | |
| 85 /* cmds.h */ | |
| 86 typedef GaimCmdFlag Gaim__Cmd__Flag; | |
| 87 typedef GaimCmdId Gaim__Cmd__Id; | |
| 88 typedef GaimCmdPriority Gaim__Cmd__Priority; | |
| 89 typedef GaimCmdRet Gaim__Cmd__Ret; | |
| 90 | |
| 91 /* connection.h */ | |
| 92 typedef GaimConnection * Gaim__Connection; | |
| 93 typedef GaimConnectionFlags Gaim__ConnectionFlags; | |
| 94 typedef GaimConnectionState Gaim__ConnectionState; | |
| 95 typedef GaimConnectionUiOps * Gaim__Connection__UiOps; | |
| 96 | |
| 97 /* conversation.h */ | |
| 98 typedef GaimConversationType Gaim__ConversationType; | |
| 99 typedef GaimUnseenState Gaim__UnseenState; | |
| 100 typedef GaimConvUpdateType Gaim__ConvUpdateType; | |
| 101 typedef GaimTypingState Gaim__TypingState; | |
| 102 typedef GaimMessageFlags Gaim__MessageFlags; | |
| 103 typedef GaimConvChatBuddyFlags Gaim__ConvChatBuddyFlags; | |
| 104 typedef GaimConversation * Gaim__Conversation; | |
| 105 typedef GaimConversationUiOps * Gaim__Conversation__UiOps; | |
| 106 typedef GaimConvIm * Gaim__Conversation__IM; | |
| 107 typedef GaimConvChat * Gaim__Conversation__Chat; | |
| 108 typedef GaimConvChatBuddy * Gaim__Conversation__ChatBuddy; | |
| 109 | |
| 110 /* debug.h */ | |
| 111 typedef GaimDebugLevel Gaim__DebugLevel; | |
| 112 | |
| 113 /* desktopitem.h */ | |
| 114 typedef GaimDesktopItem * Gaim__DesktopItem; | |
| 115 typedef GaimDesktopItemType Gaim__DesktopItemType; | |
| 116 | |
| 117 /* eventloop.h */ | |
| 118 typedef GaimInputCondition * Gaim__InputCondition; | |
| 119 typedef GaimEventLoopUiOps * Gaim__EventLoopUiOps; | |
| 120 | |
| 121 /* ft.h */ | |
| 122 typedef GaimXfer * Gaim__Xfer; | |
| 123 typedef GaimXferType Gaim__XferType; | |
| 124 typedef GaimXferStatusType Gaim__XferStatusType; | |
| 125 typedef GaimXferUiOps * Gaim__XferUiOps; | |
| 126 | |
| 127 /* gtkblish.h */ | |
| 128 typedef GaimGtkBuddyList * Gaim__GTK__BuddyList; | |
| 129 typedef GaimStatusIconSize Gaim__StatusIconSize; | |
| 130 | |
| 131 /* gtkutils.h */ | |
| 132 typedef GaimButtonOrientation Gaim__ButtonOrientation; | |
| 133 typedef GaimButtonStyle Gaim__ButtonStyle; | |
| 134 #ifndef _WIN32 | |
| 135 typedef GaimBrowserPlace Gaim__BrowserPlace; | |
| 136 #endif /* _WIN32 */ | |
| 137 | |
| 138 /* gtkconv.h */ | |
| 139 typedef GaimGtkConversation * Gaim__GTK__Conversation; | |
| 140 typedef GdkPixbuf * Gaim__GDK__Pixbuf; | |
| 141 typedef GtkWidget * Gaim__GTK__Widget; | |
| 142 | |
| 143 /* gtkutils.h */ | |
| 144 typedef GtkFileSelection * Gaim__GTK__FileSelection; | |
| 145 typedef GtkSelectionData * Gaim__GTK__SelectionData; | |
| 146 typedef GtkTextView * Gaim__GTK__TextView; | |
| 147 | |
| 148 /* gtkconn.h */ | |
| 149 | |
| 150 /* imgstore.h */ | |
| 151 typedef GaimStoredImage * Gaim__StoredImage; | |
| 152 | |
| 153 /* log.h */ | |
| 154 typedef GaimLog * Gaim__Log; | |
| 155 typedef GaimLogCommonLoggerData * Gaim__LogCommonLoggerData; | |
| 156 typedef GaimLogLogger * Gaim__Log__Logger; | |
| 157 typedef GaimLogReadFlags * Gaim__Log__ReadFlags; | |
| 158 typedef GaimLogSet * Gaim__LogSet; | |
| 159 typedef GaimLogType Gaim__LogType; | |
| 160 | |
| 161 /* network.h */ | |
| 14267 | 162 typedef GaimNetworkListenData Gaim__NetworkListenData; |
| 14192 | 163 typedef GaimNetworkListenCallback Gaim__NetworkListenCallback; |
| 164 | |
| 165 /* notify.h */ | |
| 166 typedef GaimNotifyCloseCallback Gaim__NotifyCloseCallback; | |
| 167 typedef GaimNotifyMsgType Gaim__NotifyMsgType; | |
| 168 typedef GaimNotifySearchButtonType Gaim__NotifySearchButtonType; | |
| 169 typedef GaimNotifySearchResults * Gaim__NotifySearchResults; | |
| 170 typedef GaimNotifySearchColumn * Gaim__NotifySearchColumn; | |
| 171 typedef GaimNotifySearchButton * Gaim__NotifySearchButton; | |
| 172 typedef GaimNotifyType Gaim__NotifyType; | |
| 173 typedef GaimNotifyUiOps * Gaim__NotifyUiOps; | |
| 174 | |
| 175 /* plugin.h */ | |
| 176 typedef GaimPlugin * Gaim__Plugin; | |
| 177 typedef GaimPluginAction * Gaim__Plugin__Action; | |
| 178 typedef GaimPluginInfo * Gaim__PluginInfo; | |
| 179 typedef GaimPluginLoaderInfo * Gaim__PluginLoaderInfo; | |
| 180 typedef GaimPluginType Gaim__PluginType; | |
| 181 typedef GaimPluginUiInfo * Gaim__PluginUiInfo; | |
| 182 | |
| 183 /* pluginpref.h */ | |
| 184 typedef GaimPluginPref * Gaim__PluginPref; | |
| 185 typedef GaimPluginPrefFrame * Gaim__PluginPref__Frame; | |
| 186 typedef GaimPluginPrefType Gaim__PluginPrefType; | |
| 187 | |
| 188 /* pounce.h */ | |
| 189 typedef GaimPounce * Gaim__Pounce; | |
| 190 typedef GaimPounceEvent Gaim__PounceEvent; | |
| 191 | |
| 192 /* prefs.h */ | |
| 193 typedef GaimPrefType Gaim__PrefType; | |
| 194 | |
| 195 /* privacy.h */ | |
| 196 typedef GaimPrivacyType Gaim__PrivacyType; | |
| 197 typedef GaimPrivacyUiOps * Gaim__Privacy__UiOps; | |
| 198 | |
| 199 /* proxy.h */ | |
| 200 typedef GaimProxyInfo * Gaim__ProxyInfo; | |
| 201 typedef GaimProxyType Gaim__ProxyType; | |
| 202 | |
| 203 /* prpl.h */ | |
| 204 typedef GaimBuddyIconSpec * Gaim__Buddy__Icon__Spec; | |
| 205 typedef GaimIconScaleRules Gaim__IconScaleRules; | |
| 206 typedef GaimPluginProtocolInfo * Gaim__PluginProtocolInfo; | |
| 207 typedef GaimProtocolOptions Gaim__ProtocolOptions; | |
| 208 | |
| 209 /* request.h */ | |
| 210 typedef GaimRequestField * Gaim__Request__Field; | |
| 211 typedef GaimRequestFields * Gaim__Request__Fields; | |
| 212 typedef GaimRequestFieldGroup * Gaim__Request__Field__Group; | |
| 213 typedef GaimRequestFieldType Gaim__RequestFieldType; | |
| 214 typedef GaimRequestType Gaim__RequestType; | |
| 215 typedef GaimRequestUiOps * Gaim__Request__UiOps; | |
| 216 | |
| 217 /* roomlist.h */ | |
| 218 typedef GaimRoomlist * Gaim__Roomlist; | |
| 219 typedef GaimRoomlistField * Gaim__Roomlist__Field; | |
| 220 typedef GaimRoomlistFieldType Gaim__RoomlistFieldType; | |
| 221 typedef GaimRoomlistRoom * Gaim__Roomlist__Room; | |
| 222 typedef GaimRoomlistRoomType Gaim__RoomlistRoomType; | |
| 223 typedef GaimRoomlistUiOps * Gaim__Roomlist__UiOps; | |
| 224 | |
| 225 /* savedstatuses.h */ | |
| 226 typedef GaimSavedStatus * Gaim__SavedStatus; | |
| 227 typedef GaimSavedStatusSub * Gaim__SavedStatusSub; | |
| 228 | |
| 229 /* sound.h */ | |
| 230 typedef GaimSoundEventID Gaim__SoundEventID; | |
| 231 typedef GaimSoundUiOps * Gaim__Sound__UiOps; | |
| 232 | |
| 233 /* sslconn.h */ | |
| 234 typedef GaimInputCondition * Gaim__Input__Condition; | |
| 235 typedef GaimSslConnection * Gaim__Ssl__Connection; | |
| 236 typedef GaimSslErrorType Gaim__SslErrorType; | |
| 237 typedef GaimSslOps * Gaim__Ssl__Ops; | |
| 238 | |
| 239 /* status.h */ | |
| 240 typedef GaimPresence * Gaim__Presence; | |
| 241 typedef GaimPresenceContext Gaim__PresenceContext; | |
| 242 typedef GaimStatus * Gaim__Status; | |
| 243 typedef GaimStatusAttr * Gaim__StatusAttr; | |
| 244 typedef GaimStatusPrimitive Gaim__StatusPrimitive; | |
| 245 typedef GaimStatusType * Gaim__StatusType; | |
| 246 | |
| 247 /* stringref.h */ | |
| 248 typedef GaimStringref * Gaim__Stringref; | |
| 249 | |
| 250 /* util.h */ | |
| 251 typedef GaimInfoFieldFormatCallback Gaim__Util__InfoFieldFormatCallback; | |
| 252 typedef GaimMenuAction * Gaim__Menu__Action; | |
| 253 | |
| 254 /* value.h */ | |
| 255 typedef GaimValue * Gaim__Value; | |
| 256 | |
| 257 /* xmlnode.h */ | |
| 258 typedef xmlnode * Gaim__XMLNode; | |
| 259 typedef XMLNodeType XMLNode__Type; | |
| 260 | |
| 261 /* other.h */ |
