Tue, 30 Oct 2007 23:41:10 +0000
Fix a type error. I could have sworn I did this before committing...
| 14478 | 1 | #include "gtkmodule.h" |
| 2 | ||
|
15590
c07dd12bf3f4
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
3 | MODULE = Pidgin::Pounce PACKAGE = Pidgin::Pounce PREFIX = pidgin_pounce_ |
| 14478 | 4 | PROTOTYPES: ENABLE |
| 5 | ||
| 6 | void | |
|
15590
c07dd12bf3f4
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
7 | pidgin_pounce_editor_show(account, name, cur_pounce) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
8 | Purple::Account account |
| 14478 | 9 | const char * name |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
10 | Purple::Pounce cur_pounce |
| 20706 | 11 | |
|
21217
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
12 | void |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
13 | pidgin_pounce_editor_show_with_parent(parent, account, name, cur_pounce) |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
14 | void * parent |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
15 | Purple::Account account |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
16 | const char * name |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
17 | Purple::Pounce cur_pounce |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
18 | |
|
15590
c07dd12bf3f4
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
19 | MODULE = Pidgin::Pounce PACKAGE = Pidgin::Pounces PREFIX = pidgin_pounces_ |
| 14478 | 20 | PROTOTYPES: ENABLE |
| 21 | ||
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
22 | Purple::Handle |
|
15590
c07dd12bf3f4
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
23 | pidgin_pounces_get_handle() |
| 14478 | 24 | |
|
15590
c07dd12bf3f4
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
25 | MODULE = Pidgin::Pounce PACKAGE = Pidgin::Pounces::Manager PREFIX = pidgin_pounces_manager_ |
| 14478 | 26 | PROTOTYPES: ENABLE |
| 27 | ||
| 28 | void | |
|
15590
c07dd12bf3f4
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
29 | pidgin_pounces_manager_show() |
| 20706 | 30 | |
| 31 | void | |
|
21217
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
32 | pidgin_pounces_manager_show_with_parent(parent) |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
33 | void * parent |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
34 | |
|
c5dfa570daff
merge of '5aed2d7b9176e07c0a4560850c211c5ac115fc04'
Richard Laager <rlaager@pidgin.im>
parents:
21182
diff
changeset
|
35 | void |
|
15590
c07dd12bf3f4
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
36 | pidgin_pounces_manager_hide() |