Mercurial > pidgin
annotate plugins/perl/common/Stringref.xs @ 11943:0110fc7c6a8a
[gaim-migrate @ 14234]
Bringing things up to date with the last Meanwhile release, 0.5.0 and the last
gaim-meanwhile plugin release, 1.2.5 (which should be the last plugin release
against oldstatus, if all goes well with HEAD and no major bugs crop up)
It builds, so that's a start. The status bits that have been empty since the
first import of the sametime stuff are still empty, but I'm going to try and
fill those in tomorrow. I've decided to try and start using HEAD actively, to
encourage me to get this freaking prpl fully functional.
committer: Tailor Script <tailor@pidgin.im>
| author | Christopher O'Brien <siege@pidgin.im> |
|---|---|
| date | Wed, 02 Nov 2005 03:39:03 +0000 |
| parents | b284c703d398 |
| children | 6fd82071a7b8 |
| rev | line source |
|---|---|
| 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 |
