- or download this
void call_perl(void)
{
...
/* use the static (singleton) version of the perl interpreter */
my_perl = get_perl("module_init.pm");
- or download this
PerlInterpreter* get_perl(char *perl_file)
{
...
/* exitstatus = perl_run( my_perl ); */
return my_perl;
}
- or download this
perl_call_pv("module::sub", G_EVAL|G_DISCARD|G_NOARGS|G_VOID) ;
- or download this
c_exe::c_function($self->{value},$self->{channel});
- or download this
package c_exe;
*c_function = *c_exec::c_function;
- or download this
XS(_wrap_c_function) {
{
...
... a bunch of code to handle return ...
}
}
- or download this
function c_exe::c_function not found at...