Tue, 02 Sep 2003 03:56:08 +0000
[gaim-migrate @ 7225]
Perl compiles with the new contact stuff.
| 6508 | 1 | typedef struct group *Gaim__Group; |
| 2 | ||
| 3 | #define group perl_group | |
| 4 | ||
| 5 | #include <EXTERN.h> | |
| 6 | #include <perl.h> | |
| 7 | #include <XSUB.h> | |
| 8 | #include <glib.h> | |
| 9 | ||
| 10 | #undef group | |
| 11 | ||
| 12 | #include "../perl-common.h" | |
| 13 | ||
| 14 | #include "account.h" | |
| 15 | #include "connection.h" | |
|
6591
cc1ab32edcdc
[gaim-migrate @ 7115]
Christian Hammond <chipx86@chipx86.com>
parents:
6588
diff
changeset
|
16 | #include "conversation.h" |
| 6508 | 17 | #include "debug.h" |
|
6523
20c459e452ac
[gaim-migrate @ 7040]
Christian Hammond <chipx86@chipx86.com>
parents:
6520
diff
changeset
|
18 | #include "server.h" |
| 6508 | 19 | |
|
6531
3fca41d7b411
[gaim-migrate @ 7048]
Christian Hammond <chipx86@chipx86.com>
parents:
6523
diff
changeset
|
20 | typedef GaimAccount * Gaim__Account; |
|
6699
1af918908513
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6591
diff
changeset
|
21 | typedef GaimBuddy * Gaim__BuddyList__Buddy; |
|
1af918908513
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6591
diff
changeset
|
22 | typedef GaimBlistChat * Gaim__BuddyList__Chat; |
|
1af918908513
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6591
diff
changeset
|
23 | typedef GaimGroup * Gaim__BuddyList__Group; |
|
1af918908513
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6591
diff
changeset
|
24 | typedef GaimContact * Gaim__BuddyList__Contact; |
|
6591
cc1ab32edcdc
[gaim-migrate @ 7115]
Christian Hammond <chipx86@chipx86.com>
parents:
6588
diff
changeset
|
25 | typedef GaimConnection * Gaim__Connection; |
|
cc1ab32edcdc
[gaim-migrate @ 7115]
Christian Hammond <chipx86@chipx86.com>
parents:
6588
diff
changeset
|
26 | typedef GaimConversation *Gaim__Conversation; |
|
cc1ab32edcdc
[gaim-migrate @ 7115]
Christian Hammond <chipx86@chipx86.com>
parents:
6588
diff
changeset
|
27 | typedef GaimChat * Gaim__Conversation__Chat; |
|
cc1ab32edcdc
[gaim-migrate @ 7115]
Christian Hammond <chipx86@chipx86.com>
parents:
6588
diff
changeset
|
28 | typedef GaimIm * Gaim__Conversation__IM; |
|
cc1ab32edcdc
[gaim-migrate @ 7115]
Christian Hammond <chipx86@chipx86.com>
parents:
6588
diff
changeset
|
29 | typedef GaimWindow * Gaim__ConvWindow; |
|
cc1ab32edcdc
[gaim-migrate @ 7115]
Christian Hammond <chipx86@chipx86.com>
parents:
6588
diff
changeset
|
30 | typedef GaimPlugin * Gaim__Plugin; |
|
6588
187c6026c574
[gaim-migrate @ 7110]
Christian Hammond <chipx86@chipx86.com>
parents:
6531
diff
changeset
|
31 | |
|
187c6026c574
[gaim-migrate @ 7110]
Christian Hammond <chipx86@chipx86.com>
parents:
6531
diff
changeset
|
32 | typedef GaimDebugLevel Gaim__DebugLevel; |