File: typemap

package info (click to toggle)
libhttp-ghttp-perl 1.07-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 96 kB
  • ctags: 11
  • sloc: perl: 143; makefile: 56
file content (19 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TYPEMAP
const char *        T_PV
ghttp_request *     O_OBJECT

INPUT
O_OBJECT
    if( sv_isobject($arg) && (SvTYPE(SvRV($arg)) == SVt_PVMG) )
            $var = ($type)SvIV((SV*)SvRV( $arg ));
    else{
            warn( \"${Package}::$func_name() -- $var is not a blessed SV reference\" );
            XSRETURN_UNDEF;
    }

OUTPUT

# The Perl object is blessed into 'CLASS', which should be a
# char* having the name of the package for the blessing.
O_OBJECT
        sv_setref_pv( $arg, CLASS, (void*)$var );