Help for this page

Select Code to Download


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