Sat, 22 Jun 2013 15:58:44 +0530
Added ciphers and hashes _new functions to .xs files
|
24569
5dbd0617a27d
Build everything with the *_DISABLE_DEPRECATED flags set. This allows us
Richard Laager <rlaager@pidgin.im>
parents:
23987
diff
changeset
|
1 | /* Allow the Perl code to see deprecated functions, so we can continue to |
|
5dbd0617a27d
Build everything with the *_DISABLE_DEPRECATED flags set. This allows us
Richard Laager <rlaager@pidgin.im>
parents:
23987
diff
changeset
|
2 | * export them to Perl plugins. */ |
|
5dbd0617a27d
Build everything with the *_DISABLE_DEPRECATED flags set. This allows us
Richard Laager <rlaager@pidgin.im>
parents:
23987
diff
changeset
|
3 | #undef PURPLE_DISABLE_DEPRECATED |
| 11118 | 4 | |
| 15884 | 5 | typedef struct group *Purple__Group; |
| 6508 | 6 | |
| 7 | #define group perl_group | |
| 8 | ||
|
6816
b14a3043ed09
[gaim-migrate @ 7356]
Herman Bloggs <herman@bluedigits.com>
parents:
6699
diff
changeset
|
9 | #include <glib.h> |
|
b14a3043ed09
[gaim-migrate @ 7356]
Herman Bloggs <herman@bluedigits.com>
parents:
6699
diff
changeset
|
10 | #ifdef _WIN32 |
|
b14a3043ed09
[gaim-migrate @ 7356]
Herman Bloggs <herman@bluedigits.com>
parents:
6699
diff
changeset
|
11 | #undef pipe |
|
29792
ad7890a74433
Some undefs to make building with mingw-64 more pleasant
Daniel Atallah <datallah@pidgin.im>
parents:
24569
diff
changeset
|
12 | #undef STRINGIFY |
|
6816
b14a3043ed09
[gaim-migrate @ 7356]
Herman Bloggs <herman@bluedigits.com>
parents:
6699
diff
changeset
|
13 | #endif |
| 6508 | 14 | #include <EXTERN.h> |
| 15 | #include <perl.h> | |
| 16 | #include <XSUB.h> | |
| 17 | ||
| 18 | #undef group | |
| 19 | ||
| 20 | #include "../perl-common.h" | |
| 21 | ||
|
34575
e08f2d070470
Refactored libpurple/plugins according to changes to PurpleAccount
Ankit Vani <a@nevitus.org>
parents:
34567
diff
changeset
|
22 | #include "accounts.h" |
| 11118 | 23 | #include "accountopt.h" |
| 24 | #include "blist.h" | |
| 25 | #include "buddyicon.h" | |
|
23985
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
26 | #include "certificate.h" |
| 11118 | 27 | #include "cipher.h" |
|
34567
ea5103f66b0e
Refactor the codebase to use PurpleHash
Ankit Vani <a@nevitus.org>
parents:
34552
diff
changeset
|
28 | #include "hash.h" |
| 11118 | 29 | #include "cmds.h" |
| 6508 | 30 | #include "connection.h" |
|
34605
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
31 | #include "conversations.h" |
|
15066
57ab37fe1190
[gaim-migrate @ 17784]
Richard Laager <rlaager@pidgin.im>
parents:
14779
diff
changeset
|
32 | #include "core.h" |
| 6508 | 33 | #include "debug.h" |
| 11118 | 34 | #include "desktopitem.h" |
| 35 | #include "eventloop.h" | |
| 36 | #include "ft.h" | |
| 15884 | 37 | #ifdef PURPLE_GTKPERL |
| 11118 | 38 | #include "gtkaccount.h" |
| 39 | #include "gtkblist.h" | |
| 40 | #include "gtkconn.h" | |
| 41 | #include "gtkconv.h" | |
| 42 | #include "gtkutils.h" | |
| 14434 | 43 | #endif |
|
23985
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
44 | #include "idle.h" |
| 11118 | 45 | #include "imgstore.h" |
| 46 | #include "network.h" | |
| 47 | #include "notify.h" | |
| 48 | #include "plugin.h" | |
| 49 | #include "pluginpref.h" | |
| 50 | #include "pounce.h" | |
| 51 | #include "prefs.h" | |
| 52 | #include "prpl.h" | |
| 53 | #include "proxy.h" | |
| 54 | #include "request.h" | |
| 55 | #include "roomlist.h" | |
| 56 | #include "savedstatuses.h" | |
|
6523
20c459e452ac
[gaim-migrate @ 7040]
Christian Hammond <chipx86@chipx86.com>
parents:
6520
diff
changeset
|
57 | #include "server.h" |
| 11118 | 58 | #include "signals.h" |
|
23023
6aeeb2037709
Expose smiley API to perl plugins.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21641
diff
changeset
|
59 | #include "smiley.h" |
| 11118 | 60 | #include "sound.h" |
| 61 | #include "sslconn.h" | |
| 62 | #include "status.h" | |
| 63 | #include "stringref.h" | |
|
11318
13fa1d5134f3
[gaim-migrate @ 13521]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11170
diff
changeset
|
64 | /* Ewww. perl has it's own util.h which is in the include path :( */ |
|
15437
68e19d25f4dd
Fix perl plugin compilation after libpurple rename
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
65 | #include "libpurple/util.h" |
| 11118 | 66 | #include "value.h" |
|
23985
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
67 | #include "whiteboard.h" |
| 11118 | 68 | #include "xmlnode.h" |
| 69 | ||
| 12808 | 70 | /* account.h */ |
| 15884 | 71 | typedef PurpleAccount * Purple__Account; |
| 72 | typedef PurpleAccountOption * Purple__Account__Option; | |
| 73 | typedef PurpleAccountUserSplit * Purple__Account__UserSplit; | |
|
34575
e08f2d070470
Refactored libpurple/plugins according to changes to PurpleAccount
Ankit Vani <a@nevitus.org>
parents:
34567
diff
changeset
|
74 | typedef PurpleAccountPrivacyType Purple__Account__PrivacyType; |
| 11118 | 75 | |
| 12808 | 76 | /* blist.h */ |
| 15884 | 77 | typedef PurpleBlistNode * Purple__BuddyList__Node; |
| 78 | typedef PurpleBlistNodeFlags Purple__BuddyList__NodeFlags; | |
|
17859
afbace92af8d
New function purple_blist_node_get_type.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17212
diff
changeset
|
79 | typedef PurpleBlistNodeType Purple__BuddyList__NodeType; |
| 15884 | 80 | typedef PurpleBuddyList * Purple__BuddyList; |
| 81 | typedef PurpleBuddy * Purple__BuddyList__Buddy; | |
| 82 | typedef PurpleChat * Purple__BuddyList__Chat; | |
| 83 | typedef PurpleContact * Purple__BuddyList__Contact; | |
| 84 | typedef PurpleGroup * Purple__BuddyList__Group; | |
| 11118 | 85 | |
| 12808 | 86 | /* buddyicon.h */ |
| 15884 | 87 | typedef PurpleBuddyIcon * Purple__Buddy__Icon; |
| 11118 | 88 | |
|
23985
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
89 | /* certificate.h */ |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
90 | typedef PurpleCertificate * Purple__Certificate; |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
91 | typedef PurpleCertificatePool * Purple__Certificate__Pool; |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
92 | typedef PurpleCertificateScheme * Purple__Certificate__Scheme; |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
93 | typedef PurpleCertificateVerifier * Purple__Certificate__Verifier; |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
94 | typedef PurpleCertificateVerificationRequest * Purple__Certificate__VerificationRequest; |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
95 | typedef PurpleCertificateVerificationStatus Purple__Certificate__VerificationStatus; |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
96 | |
| 12808 | 97 | /* cipher.h */ |
| 15884 | 98 | typedef PurpleCipher * Purple__Cipher; |
|
23982
204b6e71f403
Some Perl bindings fixes and additions from Zsombor Welker.
Daniel Atallah <datallah@pidgin.im>
parents:
23023
diff
changeset
|
99 | typedef PurpleCipherBatchMode Purple__Cipher__BatchMode; |
| 11118 | 100 | |
| 12808 | 101 | /* cmds.h */ |
| 15884 | 102 | typedef PurpleCmdFlag Purple__Cmd__Flag; |
| 103 | typedef PurpleCmdId Purple__Cmd__Id; | |
| 104 | typedef PurpleCmdPriority Purple__Cmd__Priority; | |
| 105 | typedef PurpleCmdRet Purple__Cmd__Ret; | |
| 11118 | 106 | |
| 12808 | 107 | /* connection.h */ |
| 15884 | 108 | typedef PurpleConnection * Purple__Connection; |
| 109 | typedef PurpleConnectionFlags Purple__ConnectionFlags; | |
| 110 | typedef PurpleConnectionState Purple__ConnectionState; | |
| 11118 | 111 | |
|
34605
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
112 | /* conversations.h */ |
|
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
113 | typedef PurpleConversationUpdateType Purple__Conversation__UpdateType; |
|
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
114 | typedef PurpleIMConversationTypingState Purple__IMConversation__TypingState; |
|
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
115 | typedef PurpleConversationMessageFlags Purple__Conversation__MessageFlags; |
|
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
116 | typedef PurpleChatConversationBuddyFlags Purple__ChatConversation__Buddy__Flags; |
| 15884 | 117 | typedef PurpleConversation * Purple__Conversation; |
|
34605
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
118 | typedef PurpleIMConversation * Purple__IMConversation; |
|
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
119 | typedef PurpleChatConversation * Purple__ChatConversation; |
|
89e6c5346d63
Begun refactoring for PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34575
diff
changeset
|
120 | typedef PurpleChatConversationBuddy * Purple__ChatConversation__Buddy; |
| 11118 | 121 | |
|
15066
57ab37fe1190
[gaim-migrate @ 17784]
Richard Laager <rlaager@pidgin.im>
parents:
14779
diff
changeset
|
122 | /* core.h */ |
|
57ab37fe1190
[gaim-migrate @ 17784]
Richard Laager <rlaager@pidgin.im>
parents:
14779
diff
changeset
|
123 | |
| 15884 | 124 | typedef PurpleCore * Purple__Core; |
|
15066
57ab37fe1190
[gaim-migrate @ 17784]
Richard Laager <rlaager@pidgin.im>
parents:
14779
diff
changeset
|
125 | |
| 12808 | 126 | /* debug.h */ |
| 15884 | 127 | typedef PurpleDebugLevel Purple__DebugLevel; |
| 11118 | 128 | |
| 12808 | 129 | /* desktopitem.h */ |
| 15884 | 130 | typedef PurpleDesktopItem * Purple__DesktopItem; |
| 131 | typedef PurpleDesktopItemType Purple__DesktopItemType; | |
| 11118 | 132 | |
| 12808 | 133 | /* eventloop.h */ |
| 15884 | 134 | typedef PurpleInputCondition * Purple__InputCondition; |
| 11118 | 135 | |
| 12808 | 136 | /* ft.h */ |
| 15884 | 137 | typedef PurpleXfer * Purple__Xfer; |
| 138 | typedef PurpleXferType Purple__XferType; | |
| 139 | typedef PurpleXferStatusType Purple__XferStatusType; | |
|
23987
3d41ccd1f8bf
Remove various opaque UiOps functions from the perl loader as they aren't useable.
Daniel Atallah <datallah@pidgin.im>
parents:
23985
diff
changeset
|
140 | |
| 11118 | 141 | |
| 15884 | 142 | #ifdef PURPLE_GTKPERL |
| 12808 | 143 | /* gtkblish.h */ |
| 15884 | 144 | typedef PurpleGtkBuddyList * Purple__GTK__BuddyList; |
| 145 | typedef PurpleStatusIconSize Purple__StatusIconSize; | |
| 11118 | 146 | |
| 12808 | 147 | /* gtkutils.h */ |
| 15884 | 148 | typedef PurpleButtonOrientation Purple__ButtonOrientation; |
| 149 | typedef PurpleButtonStyle Purple__ButtonStyle; | |
| 11139 | 150 | #ifndef _WIN32 |
| 15884 | 151 | typedef PurpleBrowserPlace Purple__BrowserPlace; |
| 11139 | 152 | #endif /* _WIN32 */ |
| 6508 | 153 | |
| 12808 | 154 | /* gtkconv.h */ |
| 15884 | 155 | typedef PurpleUnseenState Purple__UnseenState; |
| 156 | typedef PurpleGtkConversation * Purple__GTK__Conversation; | |
| 157 | typedef GdkPixbuf * Purple__GDK__Pixbuf; | |
| 158 | typedef GtkWidget * Purple__GTK__Widget; | |
| 11118 | 159 | |
| 12808 | 160 | /* gtkutils.h */ |
| 15884 | 161 | typedef GtkFileSelection * Purple__GTK__FileSelection; |
| 162 | typedef GtkSelectionData * Purple__GTK__SelectionData; | |
| 163 | typedef GtkTextView * Purple__GTK__TextView; | |
| 11118 | 164 | |
| 12808 | 165 | /* gtkconn.h */ |
| 14434 | 166 | #endif |
| 11118 | 167 | |
|
34567
ea5103f66b0e
Refactor the codebase to use PurpleHash
Ankit Vani <a@nevitus.org>
parents:
34552
diff
changeset
|
168 | /* hash.h */ |
|
ea5103f66b0e
Refactor the codebase to use PurpleHash
Ankit Vani <a@nevitus.org>
parents:
34552
diff
changeset
|
169 | typedef PurpleHash * Purple__Hash; |
|
ea5103f66b0e
Refactor the codebase to use PurpleHash
Ankit Vani <a@nevitus.org>
parents:
34552
diff
changeset
|
170 | |
| 12808 | 171 | /* imgstore.h */ |
| 15884 | 172 | typedef PurpleStoredImage * Purple__StoredImage; |
| 11118 | 173 | |
| 12808 | 174 | /* log.h */ |
| 15884 | 175 | typedef PurpleLog * Purple__Log; |
| 176 | typedef PurpleLogCommonLoggerData * Purple__LogCommonLoggerData; | |
| 177 | typedef PurpleLogLogger * Purple__Log__Logger; | |
| 178 | typedef PurpleLogReadFlags * Purple__Log__ReadFlags; | |
| 179 | typedef PurpleLogSet * Purple__LogSet; | |
| 180 | typedef PurpleLogType Purple__LogType; | |
| 11118 | 181 | |
|
12910
e6c3213c28ec
[gaim-migrate @ 15263]
Daniel Atallah <datallah@pidgin.im>
parents:
12882
diff
changeset
|
182 | /* network.h */ |
| 15884 | 183 | typedef PurpleNetworkListenData * Purple__NetworkListenData; |
| 184 | typedef PurpleNetworkListenCallback Purple__NetworkListenCallback; | |
|
12910
e6c3213c28ec
[gaim-migrate @ 15263]
Daniel Atallah <datallah@pidgin.im>
parents:
12882
diff
changeset
|
185 | |
| 12808 | 186 | /* notify.h */ |
| 15884 | 187 | typedef PurpleNotifyCloseCallback Purple__NotifyCloseCallback; |
| 188 | typedef PurpleNotifyMsgType Purple__NotifyMsgType; | |
| 189 | typedef PurpleNotifySearchButtonType Purple__NotifySearchButtonType; | |
| 190 | typedef PurpleNotifySearchResults * Purple__NotifySearchResults; | |
| 191 | typedef PurpleNotifySearchColumn * Purple__NotifySearchColumn; | |
| 192 | typedef PurpleNotifySearchButton * Purple__NotifySearchButton; | |
| 193 | typedef PurpleNotifyType Purple__NotifyType; | |
| 194 | typedef PurpleNotifyUserInfo * Purple__NotifyUserInfo; | |
| 195 | typedef PurpleNotifyUserInfoEntry * Purple__NotifyUserInfoEntry; | |
| 11118 | 196 | |
| 12808 | 197 | /* plugin.h */ |
| 15884 | 198 | typedef PurplePlugin * Purple__Plugin; |
| 199 | typedef PurplePluginAction * Purple__Plugin__Action; | |
| 200 | typedef PurplePluginInfo * Purple__PluginInfo; | |
| 201 | typedef PurplePluginLoaderInfo * Purple__PluginLoaderInfo; | |
| 202 | typedef PurplePluginType Purple__PluginType; | |
| 203 | typedef PurplePluginUiInfo * Purple__PluginUiInfo; | |
| 11118 | 204 | |
| 12808 | 205 | /* pluginpref.h */ |
| 15884 | 206 | typedef PurplePluginPref * Purple__PluginPref; |
| 207 | typedef PurplePluginPrefFrame * Purple__PluginPref__Frame; | |
| 208 | typedef PurplePluginPrefType Purple__PluginPrefType; | |
|
21641
a0d410a35eb8
Add purple_plugin_pref_[sg]et_format_type to the Perl API. There are a number of new functions that also need to be added, but I don't have time to do that right now. Fixes #3781.
Daniel Atallah <datallah@pidgin.im>
parents:
17859
diff
changeset
|
209 | typedef PurpleStringFormatType Purple__String__Format__Type; |
| 11118 | 210 | |
| 12808 | 211 | /* pounce.h */ |
| 15884 | 212 | typedef PurplePounce * Purple__Pounce; |
| 213 | typedef PurplePounceEvent Purple__PounceEvent; | |
| 11118 | 214 | |
| 12808 | 215 | /* prefs.h */ |
| 15884 | 216 | typedef PurplePrefType Purple__PrefType; |
| 11118 | 217 | |
| 12808 | 218 | /* proxy.h */ |
| 15884 | 219 | typedef PurpleProxyInfo * Purple__ProxyInfo; |
| 220 | typedef PurpleProxyType Purple__ProxyType; | |
|
6588
187c6026c574
[gaim-migrate @ 7110]
Christian Hammond <chipx86@chipx86.com>
parents:
6531
diff
changeset
|
221 | |
| 12808 | 222 | /* prpl.h */ |
| 15884 | 223 | typedef PurpleBuddyIconSpec * Purple__Buddy__Icon__Spec; |
| 224 | typedef PurpleIconScaleRules Purple__IconScaleRules; | |
| 225 | typedef PurplePluginProtocolInfo * Purple__PluginProtocolInfo; | |
| 226 | typedef PurpleProtocolOptions Purple__ProtocolOptions; | |
| 11118 | 227 | |
| 12808 | 228 | /* request.h */ |
| 15884 | 229 | typedef PurpleRequestField * Purple__Request__Field; |
| 230 | typedef PurpleRequestFields * Purple__Request__Fields; | |
| 231 | typedef PurpleRequestFieldGroup * Purple__Request__Field__Group; | |
| 232 | typedef PurpleRequestFieldType Purple__RequestFieldType; | |
| 233 | typedef PurpleRequestType Purple__RequestType; | |
| 11118 | 234 | |
| 12808 | 235 | /* roomlist.h */ |
| 15884 | 236 | typedef PurpleRoomlist * Purple__Roomlist; |
| 237 | typedef PurpleRoomlistField * Purple__Roomlist__Field; | |
| 238 | typedef PurpleRoomlistFieldType Purple__RoomlistFieldType; | |
| 239 | typedef PurpleRoomlistRoom * Purple__Roomlist__Room; | |
| 240 | typedef PurpleRoomlistRoomType Purple__RoomlistRoomType; | |
| 11118 | 241 | |
| 12808 | 242 | /* savedstatuses.h */ |
| 15884 | 243 | typedef PurpleSavedStatus * Purple__SavedStatus; |
|
17212
29c5fc5e0cdc
Warmenhove a patch from Steven Danna to add bindings to all the savedstatus.h
Etan Reisner <deryni@pidgin.im>
parents:
16773
diff
changeset
|
244 | typedef PurpleSavedStatusSub * Purple__SavedStatus__Sub; |
| 11118 | 245 | |
|
23023
6aeeb2037709
Expose smiley API to perl plugins.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21641
diff
changeset
|
246 | /* smiley.h */ |
|
6aeeb2037709
Expose smiley API to perl plugins.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21641
diff
changeset
|
247 | typedef PurpleSmiley * Purple__Smiley; |
|
6aeeb2037709
Expose smiley API to perl plugins.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21641
diff
changeset
|
248 | |
| 12808 | 249 | /* sound.h */ |
| 15884 | 250 | typedef PurpleSoundEventID Purple__SoundEventID; |
| 11118 | 251 | |
| 12808 | 252 | /* sslconn.h */ |
| 15884 | 253 | typedef PurpleInputCondition * Purple__Input__Condition; |
| 254 | typedef PurpleSslConnection * Purple__Ssl__Connection; | |
| 255 | typedef PurpleSslErrorType Purple__SslErrorType; | |
| 256 | typedef PurpleSslOps * Purple__Ssl__Ops; | |
| 11118 | 257 | |
| 12808 | 258 | /* status.h */ |
| 15884 | 259 | typedef PurplePresence * Purple__Presence; |
| 260 | typedef PurplePresenceContext Purple__PresenceContext; | |
| 261 | typedef PurpleStatus * Purple__Status; | |
| 262 | typedef PurpleStatusAttr * Purple__StatusAttr; | |
| 263 | typedef PurpleStatusPrimitive Purple__StatusPrimitive; | |
| 264 | typedef PurpleStatusType * Purple__StatusType; | |
| 11118 | 265 | |
| 13018 | 266 | /* stringref.h */ |
| 15884 | 267 | typedef PurpleStringref * Purple__Stringref; |
| 11118 | 268 | |
| 12919 | 269 | /* util.h */ |
| 15884 | 270 | typedef PurpleInfoFieldFormatCallback Purple__Util__InfoFieldFormatCallback; |
| 271 | typedef PurpleMenuAction * Purple__Menu__Action; | |
| 12919 | 272 | |
| 12808 | 273 | /* value.h */ |
| 15884 | 274 | typedef PurpleValue * Purple__Value; |
| 11118 | 275 | |
|
23985
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
276 | /* whiteboard.h */ |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
277 | typedef PurpleWhiteboard * Purple__Whiteboard; |
|
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
278 | |
| 12808 | 279 | /* xmlnode.h */ |
| 15884 | 280 | typedef xmlnode * Purple__XMLNode; |
| 12808 | 281 | typedef XMLNodeType XMLNode__Type; |
| 11118 | 282 | |
|
14779
1b71da367f56
[gaim-migrate @ 17471]
Martijn van Beers <martijn@eekeek.org>
parents:
14434
diff
changeset
|
283 | /* other */ |
| 15884 | 284 | typedef void * Purple__Handle; |
|
15165
0ff631dfbbca
[gaim-migrate @ 17889]
Daniel Atallah <datallah@pidgin.im>
parents:
15066
diff
changeset
|
285 | |
|
0ff631dfbbca
[gaim-migrate @ 17889]
Daniel Atallah <datallah@pidgin.im>
parents:
15066
diff
changeset
|
286 | typedef gchar gchar_own; |
|
0ff631dfbbca
[gaim-migrate @ 17889]
Daniel Atallah <datallah@pidgin.im>
parents:
15066
diff
changeset
|
287 | |
|
16773
e1171eb45f07
Remove the const-c and const-xs stuff and replace it with real constants
Etan Reisner <deryni@pidgin.im>
parents:
15884
diff
changeset
|
288 | typedef struct _constiv { |
|
e1171eb45f07
Remove the const-c and const-xs stuff and replace it with real constants
Etan Reisner <deryni@pidgin.im>
parents:
15884
diff
changeset
|
289 | const char *name; |
|
e1171eb45f07
Remove the const-c and const-xs stuff and replace it with real constants
Etan Reisner <deryni@pidgin.im>
parents:
15884
diff
changeset
|
290 | IV iv; |
|
e1171eb45f07
Remove the const-c and const-xs stuff and replace it with real constants
Etan Reisner <deryni@pidgin.im>
parents:
15884
diff
changeset
|
291 | } constiv; |
|
23985
a8c308734700
Another Perl patch from Zsombor Welker to add more functions.
Daniel Atallah <datallah@pidgin.im>
parents:
23982
diff
changeset
|
292 |