ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/typemap
(Generate patch)

Comparing rxvt-unicode/src/typemap (file contents):
Revision 1.9 by root, Mon Jun 4 16:03:33 2012 UTC vs.
Revision 1.11 by root, Thu Jun 14 18:19:11 2012 UTC

2 2
3Time T_UV 3Time T_UV
4Atom T_UV 4Atom T_UV
5Window T_UV 5Window T_UV
6Pixmap T_UV 6Pixmap T_UV
7rxvt_img::nv T_NV
7 8
8urxvt::pixbuf T_PTROBJ 9urxvt::pixbuf T_PTROBJ
9 10
10octet_string OCTET_STRING 11octet_string OCTET_STRING
11utf8_string UTF8_STRING 12utf8_string UTF8_STRING
12 13
13rxvt_term * TERM 14rxvt_term * TERM
14rxvt_img * IMG 15rxvt_img * IMG
15 16
16GError ** T_UV 17GError ** T_UV
18
19render_repeat_mode RENDER_REPEAT_MODE
17 20
18INPUT 21INPUT
19 22
20TERM 23TERM
21 $var = SvTERM ($arg); 24 $var = SvTERM ($arg);
32 if (SvROK ($arg) && sv_derived_from ($arg, \"urxvt::img\")) 35 if (SvROK ($arg) && sv_derived_from ($arg, \"urxvt::img\"))
33 $var = INT2PTR ($type, SvIV ((SV *) SvRV ($arg))); 36 $var = INT2PTR ($type, SvIV ((SV *) SvRV ($arg)));
34 else 37 else
35 croak (\"%s is not of type urxvt::img\", \"$var\") 38 croak (\"%s is not of type urxvt::img\", \"$var\")
36 39
40RENDER_REPEAT_MODE
41 if (SvOK ($arg))
42 {
43 $var = SvIV ($arg);
44 if ($var != RepeatNone && $var != RepeatNormal && $var != RepeatPad && $var != RepeatReflect)
45 croak (\"invalid repeat mode specified (%d)\\n\", $var);
46 }
47 else
48 $var = RepeatNormal;
49
37OUTPUT 50OUTPUT
38 51
39TERM 52TERM
40 $arg = newSVterm ($var); 53 $arg = newSVterm ($var);
41 54

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines