Thu, 11 Aug 2005 07:56:29 +0000
[gaim-migrate @ 13372]
committing crazychat again. hopefully here to stay.
| 11118 | 1 | #include "module.h" |
| 2 | ||
| 3 | /* TODO | |
| 4 | ||
| 5 | Gaim::Stringref | |
| 6 | gaim_stringref_printf(format, gaim_stringref_printf) | |
| 7 | const char *format | |
| 8 | ... | |
| 9 | ||
| 10 | ||
| 11 | */ | |
| 12 | ||
| 13 | MODULE = Gaim::Stringref PACKAGE = Gaim::Stringref PREFIX = gaim_stringref_ | |
| 14 | PROTOTYPES: ENABLE | |
| 15 | ||
| 16 | int | |
| 17 | gaim_stringref_cmp(s1, s2) | |
| 18 | Gaim::Stringref s1 | |
| 19 | Gaim::Stringref s2 | |
| 20 | ||
| 21 | size_t | |
| 22 | gaim_stringref_len(stringref) | |
| 23 | Gaim::Stringref stringref | |
| 24 | ||
| 25 | Gaim::Stringref | |
| 26 | gaim_stringref_new(value) | |
| 27 | const char *value | |
| 28 | ||
| 29 | Gaim::Stringref | |
| 30 | gaim_stringref_new_noref(value) | |
| 31 | const char *value | |
| 32 | ||
| 33 | ||
| 34 | ||
| 35 | Gaim::Stringref | |
| 36 | gaim_stringref_ref(stringref) | |
| 37 | Gaim::Stringref stringref | |
| 38 | ||
| 39 | void | |
| 40 | gaim_stringref_unref(stringref) | |
| 41 | Gaim::Stringref stringref | |
| 42 | ||
| 43 | const char * | |
| 44 | gaim_stringref_value(stringref) | |
| 45 | Gaim::Stringref stringref | |
| 46 |