in reply to Re^3: extracting information about xsubs
in thread extracting information about xsubs

May be they are here, in Storable.pm?

# # nstore # # Same as store, but in network order. # sub nstore { return _store(\&net_pstore, @_, 0); }

Replies are listed 'Best First'.
Re^5: extracting information about xsubs
by Corion (Patriarch) on Aug 19, 2015 at 07:45 UTC

    If you look at Image::CCV and its XS file ..., you will find that myccv_pack_parameters is never used in the .pm module and only exported from the XS code. Maybe (maybe) you can extract the names from the DLL by looking at the exported symbols, but then you will need to learn about which exported symbols are supposed to be Perl-callable and which symbols are just exported because the programmer was lazy.

      It seems that xsubs are not exported. There is a single entry point in dll and xsubs are somewhere inside of it.

        It seems that xsubs are not exported. There is a single entry point in dll and xsubs are somewhere inside of it.

        Yes, this is what its like