if you're fine with command line, then
dumpbin /exports perl513.dll
could provide you with needed information with a quite simple text output that should be enough for you
.... 37 24 002126B4 PL_collation_ix 38 25 00213AC8 PL_collation_name 39 26 002100E4 PL_collation_standard 40 27 00213A64 PL_collxfrm_base 41 28 002100E0 PL_collxfrm_mult 42 29 00213440 PL_colors 43 2A 00213544 PL_colorset ....

I've browsed C API and haven't found a function that lists functions from a DLL
I seem to remember that one could get a function by ordinal number (@3) but these must be false memories implanted by someone.

Win32::API is closest that I could advice, and this also suggests you know name of your function.


In reply to Re: On Yaks and the Shaving Thereof - finding exported symbols of a C library by vkon
in thread On Yaks and the Shaving Thereof - finding exported symbols of a C library by Corion

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.