gstreamer/swig/typemap.i
Thomas Vander Stichele b66d124abc taking a first stab at swigging gstreamer for perl
Original commit message from CVS:
taking a first stab at swigging gstreamer for perl
2001-08-13 13:46:21 +00:00

14 lines
208 B
OpenEdge ABL

%include "typemap.i"
%typemap(perl5,in) const guchar *
{
int len;
$target = (guchar *) SvPV ($source, len);
}
%typemap(perl5,in) const gchar *
{
int len;
$target = (gchar *) SvPV ($source, len);
}