| 9 void |
9 void |
| 10 pidgin_log_show(type, screenname, account) |
10 pidgin_log_show(type, screenname, account) |
| 11 Purple::LogType type |
11 Purple::LogType type |
| 12 const char * screenname |
12 const char * screenname |
| 13 Purple::Account account |
13 Purple::Account account |
| 14 CODE: |
14 |
| 15 pidgin_log_show(NULL, type, screenname, account); |
15 void |
| |
16 pidgin_log_show_with_parent(parent, type, screenname, account) |
| |
17 void * parent |
| |
18 Purple::LogType type |
| |
19 const char * screenname |
| |
20 Purple::Account account |
| 16 |
21 |
| 17 void |
22 void |
| 18 pidgin_log_show_contact(contact) |
23 pidgin_log_show_contact(contact) |
| 19 Purple::BuddyList::Contact contact |
24 Purple::BuddyList::Contact contact |
| 20 CODE: |
25 |
| 21 pidgin_log_show_contact(NULL, contact); |
26 void |
| |
27 pidgin_log_show_contact_with_parent(parent, contact) |
| |
28 void * parent |
| |
29 Purple::BuddyList::Contact contact |
| 22 |
30 |
| 23 MODULE = Pidgin::Log PACKAGE = Pidgin::SysLog PREFIX = pidgin_syslog_ |
31 MODULE = Pidgin::Log PACKAGE = Pidgin::SysLog PREFIX = pidgin_syslog_ |
| 24 PROTOTYPES: ENABLE |
32 PROTOTYPES: ENABLE |
| 25 |
33 |
| 26 void |
34 void |
| 27 pidgin_syslog_show() |
35 pidgin_syslog_show() |
| 28 CODE: |
36 |
| 29 pidgin_syslog_show(NULL); |
37 void |
| |
38 pidgin_syslog_show_with_parent(parent) |
| |
39 void * parent |