mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
b66d124abc
Original commit message from CVS: taking a first stab at swigging gstreamer for perl
14 lines
208 B
OpenEdge ABL
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);
|
|
}
|
|
|