comparison plugins/perl/common/Stringref.xs @ 11118:134d0001983d

[gaim-migrate @ 13174] Some new xsubs for the perl interpreter and a work around to get it all working again. committer: Tailor Script <tailor@pidgin.im>
author John H. Kelm <johnkelm@gmail.com>
date Mon, 18 Jul 2005 13:37:38 +0000
parents
children b284c703d398
comparison
equal deleted inserted replaced
11117:5a8bc4b1f5b6 11118:134d0001983d
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