Mon, 03 Oct 2005 03:17:46 +0000
[gaim-migrate @ 13866]
Rewrite of the "transparency" plugin. This should suck less and now offers the option of being opaque on focus. I need to evaluate the "Always on top" functionality of the Buddy List because it may conflict wiht the WinGaim Options plugin.
| 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 |