Sun, 30 Oct 2005 23:00:47 +0000
[gaim-migrate @ 14198]
sf patch #1342817, from Evan Schoenberg
"As discussed in #gaim, this patch removes idle.c and replaces it
with gtkidle.c and gtkidle.h. The attached diff removes the idle
management from its various hiding places in connection.c, server.c,
and gaim.h. The plugins Changelog.API is appropriately updated.
The new gtkidle files are attached; idle.c should be removed from
CVS."
committer: Mark Doliner <markdoliner@pidgin.im>
| 11118 | 1 | #include "module.h" |
| 2 | ||
| 3 | MODULE = Gaim::Stringref PACKAGE = Gaim::Stringref PREFIX = gaim_stringref_ | |
| 4 | PROTOTYPES: ENABLE | |
| 5 | ||
| 6 | int | |
| 7 | gaim_stringref_cmp(s1, s2) | |
| 8 | Gaim::Stringref s1 | |
| 9 | Gaim::Stringref s2 | |
| 10 | ||
| 11 | size_t | |
| 12 | gaim_stringref_len(stringref) | |
| 13 | Gaim::Stringref stringref | |
| 14 | ||
| 15 | Gaim::Stringref | |
| 16 | gaim_stringref_new(value) | |
| 17 | const char *value | |
| 18 | ||
| 19 | Gaim::Stringref | |
| 20 | gaim_stringref_new_noref(value) | |
| 21 | const char *value | |
| 22 | ||
| 23 | ||
| 24 | ||
| 25 | Gaim::Stringref | |
| 26 | gaim_stringref_ref(stringref) | |
| 27 | Gaim::Stringref stringref | |
| 28 | ||
| 29 | void | |
| 30 | gaim_stringref_unref(stringref) | |
| 31 | Gaim::Stringref stringref | |
| 32 | ||
| 33 | const char * | |
| 34 | gaim_stringref_value(stringref) | |
| 35 | Gaim::Stringref stringref | |
| 36 |