New file.
1998-10-10 Martin Baulig <martin@home-of-linux.org> * typemap: New file. * perl.awk: Make it work with the new format of `features.def'. * Makefile.PL.in: Added typemap. * Libgtop.pm (new): New function.
This commit is contained in:
committed by
Martin Baulig
parent
8014f2590b
commit
3af2e87c77
22
perl/typemap
Normal file
22
perl/typemap
Normal file
@@ -0,0 +1,22 @@
|
||||
TYPEMAP
|
||||
int64_t T_IV
|
||||
pid_t T_IV
|
||||
const char * T_PV
|
||||
|
||||
glibtop * O_OBJECT
|
||||
|
||||
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);
|
||||
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user