Help for this page

Select Code to Download


  1. or download this
    
    use ExtUtils::testlib;
    ...
    
    TestXS::callback_sub($file_list, "test_callback");
    
  2. or download this
    int call_perl_sub(SV *routine, SV *data_hash)
    {
    ...
    
            call_perl_sub(callback, SvREFCNT_inc(file_list));
        }
    
  3. or download this
    [UPDATED] /usr/include/ ==>> Marked.
    [IN_SUB]
    ...
         /tmp ==>>
         /tmp/TestXS ==>>
    ...
    
  4. or download this
    sub test_callback
    {
    ...
    
        print "[IN_SUB] ", $hash, " reference to ", ref($hash), \n";
    }